From 4bce97b16bc393e945c1955bf900364f5a456202 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Tue, 20 Oct 2015 16:19:00 -0400 Subject: rename spill field in Tmp to slot --- lisc/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisc/util.c') 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); } -- cgit 1.4.1