summary refs log tree commit diff
path: root/lisc/spill.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-08-04 19:39:01 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-09-15 23:01:30 -0400
commit1477dffe32ae769c15ee49e77c5f0856bd0f56ea (patch)
tree60a3e6602227b8c2cb3141a43e5c8e82cb18cd8d /lisc/spill.c
parentdf358ad6d21502568df9f937788f3fab6a81e047 (diff)
downloadroux-1477dffe32ae769c15ee49e77c5f0856bd0f56ea.tar.gz
use cmp $0, it works with spill slots
Diffstat (limited to 'lisc/spill.c')
-rw-r--r--lisc/spill.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisc/spill.c b/lisc/spill.c
index 64200af..30adb35 100644
--- a/lisc/spill.c
+++ b/lisc/spill.c
@@ -334,6 +334,7 @@ spill(Fn *fn)
 		assert(bcnt(&v) <= nreg);
 
 		/* 2. process the block instructions */
+#if 0
 		if (rtype(b->jmp.arg) == RTmp) {
 			j = b->jmp.arg.val;
 			if (!BGET(v, j) && l==nreg) {
@@ -342,6 +343,7 @@ spill(Fn *fn)
 			}
 			BSET(v, j);
 		}
+#endif
 		curi = &insb[NIns];
 		for (i=&b->ins[b->nins]; i!=b->ins;) {
 			assert(bcnt(&v) <= nreg);