summary refs log tree commit diff
path: root/lisc/rega.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-10-20 16:19:00 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-10-30 13:20:42 -0400
commit4bce97b16bc393e945c1955bf900364f5a456202 (patch)
treeeddbc67574f34a8cae717c7497f07e50a9fc07e4 /lisc/rega.c
parenta7e7d73a7e41216436c334c89b7318e698e828f6 (diff)
downloadroux-4bce97b16bc393e945c1955bf900364f5a456202.tar.gz
rename spill field in Tmp to slot
Diffstat (limited to 'lisc/rega.c')
-rw-r--r--lisc/rega.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/rega.c b/lisc/rega.c
index 2f6d613..331fa85 100644
--- a/lisc/rega.c
+++ b/lisc/rega.c
@@ -46,7 +46,7 @@ rref(RMap *m, int t)
 
 	r = rfind(m, t);
 	if (r == -1) {
-		s = tmp[t].spill;
+		s = tmp[t].slot;
 		assert(s != -1 && "should have spilled");
 		return SLOT(s);
 	} else