summary refs log tree commit diff
path: root/lisc/util.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/util.c
parenta7e7d73a7e41216436c334c89b7318e698e828f6 (diff)
downloadroux-4bce97b16bc393e945c1955bf900364f5a456202.tar.gz
rename spill field in Tmp to slot
Diffstat (limited to 'lisc/util.c')
-rw-r--r--lisc/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/util.c b/lisc/util.c
index 1d5ce7c..53aad55 100644
--- a/lisc/util.c
+++ b/lisc/util.c
@@ -175,7 +175,7 @@ newtmp(char *prfx, Fn *fn)
 	t = fn->ntmp++;
 	vgrow(&fn->tmp, fn->ntmp);
 	sprintf(fn->tmp[t].name, "%s%d", prfx, ++n);
-	fn->tmp[t].spill = -1;
+	fn->tmp[t].slot = -1;
 	return TMP(t);
 }