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

@@ -191,14 +191,14 @@ symvalue() {
do_tes()
{
register line_p insptr = instrs, oldlin = NULL;
register line_p insptr = instrs, oldlin = NULL, oldlin2 = NULL;
init_state();
tes_pseudos();
while (insptr != NULL) {
insptr->l_prev = oldlin;
tes_instr(insptr, oldlin, oldlin2);
oldlin2 = oldlin;
oldlin = insptr;
tes_instr(insptr);
insptr = insptr->l_next;
}
}