reduce memory usage (again)

This commit is contained in:
ceriel
1991-02-01 10:21:39 +00:00
parent 8c952c6649
commit 08d15e2b9c
3 changed files with 5 additions and 9 deletions

View File

@@ -30,7 +30,6 @@ extern char flow_tab[];
#define INSTR(lnp) (lnp->l_instr & BMASK)
#define TYPE(lnp) lnp->l_optyp
#define PREV(lnp) lnp->l_prev
#define SHORT(lnp) lnp->l_a.la_short
#define MINI(lnp) ((lnp->l_optyp & BMASK) - Z_OPMINI)
@@ -69,14 +68,12 @@ tes_pseudos()
}
}
tes_instr(lnp)
line_p lnp;
tes_instr(lnp, x, y)
line_p lnp, x, y;
{
char *s;
register instr = INSTR(lnp);
register int arg, argdef;
line_p x = PREV(lnp);
line_p y = (x == (line_p) 0 ? (line_p) 0 : PREV(x));
int neg = 0;
if (instr == op_lab) {