diff options
| author | Quentin Carbonneaux <[email protected]> | 2017-02-24 09:48:53 -0500 |
|---|---|---|
| committer | Quentin Carbonneaux <[email protected]> | 2017-02-24 09:50:35 -0500 |
| commit | 1bb7652484e1c7ca2cd7fcab858b4bbb18509879 (patch) | |
| tree | b04e582abaf59fdd220d9e68895d07902ccd865a /load.c | |
| parent | f3301026fa404c68c7ad399b5a56a5135b88af04 (diff) | |
deduplicate loadsz & storesz
Diffstat (limited to 'load.c')
| -rw-r--r-- | load.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -42,7 +42,7 @@ static uint inum; /* current insertion number */ static Insert *ilog; /* global insertion log */ static uint nlog; /* number of entries in the log */ -static int +int loadsz(Ins *l) { switch (l->op) { @@ -54,7 +54,7 @@ loadsz(Ins *l) die("unreachable"); } -static int +int storesz(Ins *s) { switch (s->op) { |
