summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lisc/spill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisc/spill.c b/lisc/spill.c
index 5fa54ca..49a7db4 100644
--- a/lisc/spill.c
+++ b/lisc/spill.c
@@ -171,9 +171,9 @@ slot(int t)
 	s = tmp[t].spill;
 	if (!s) {
 		if (tmp[t].type == TWord)
-			s = slota(1, 1, svec);
+			s = slota(1, 0, svec);
 		else if (tmp[t].type == TLong)
-			s = slota(2, 2, svec);
+			s = slota(2, 1, svec);
 		else
 			diag("spill: unknown type (1)");
 		tmp[t].spill = s;