qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit 01c1734e42d49202aaa1362b18a428d0d7ae0c3f
parent 72fc4559786dac5154ba344755758ba7a096be1b
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Tue,  6 Oct 2015 23:32:44 -0400

uh oh, typo bug in freeall()

Diffstat:
Mlisc/util.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisc/util.c b/lisc/util.c @@ -68,7 +68,7 @@ freeall() void **pp; for (;;) { - for (pp = &pool[1]; pp < &pool[NPtr]; pp++) + for (pp = &pool[1]; pp < &pool[nptr]; pp++) free(*pp); pp = pool[0]; if (!pp)