summary refs log tree commit diff
path: root/lisc
diff options
context:
space:
mode:
Diffstat (limited to 'lisc')
-rw-r--r--lisc/ssa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisc/ssa.c b/lisc/ssa.c
index 4501044..9115f4c 100644
--- a/lisc/ssa.c
+++ b/lisc/ssa.c
@@ -295,8 +295,8 @@ phiins(Fn *fn)
 	Ref r;
 	int t, n, k, nt;
 
-	bsinit(u, fn->ntmp); /* todo, free those */
-	bsinit(defs, fn->ntmp);
+	bsinit(u, fn->nblk); /* todo, free those */
+	bsinit(defs, fn->nblk);
 	blist = emalloc(fn->nblk * sizeof blist[0]);
 	be = &blist[fn->nblk];
 	nt = fn->ntmp;