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/spill.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lisc/spill.c') diff --git a/lisc/spill.c b/lisc/spill.c index 2ed25b4..8e647a4 100644 --- a/lisc/spill.c +++ b/lisc/spill.c @@ -140,7 +140,7 @@ slot(int t) if (t < Tmp0) diag("spill: cannot spill register"); - s = tmp[t].spill; + s = tmp[t].slot; if (s == -1) { assert(NAlign == 3); /* nice logic to pack stack slots @@ -163,7 +163,7 @@ slot(int t) slot4 = slot8; } s += locs; - tmp[t].spill = s; + tmp[t].slot = s; } return SLOT(s); } @@ -375,7 +375,7 @@ spill(Fn *fn) BCLR(v, t); else limit(&v, NReg-1, 0); - s = tmp[t].spill; + s = tmp[t].slot; } j = opdesc[i->op].nmem; if (!j && rtype(i->arg[0]) == RTmp) @@ -394,7 +394,7 @@ spill(Fn *fn) t = p->to.val; if (BGET(v, t)) { BCLR(v, t); - s = tmp[t].spill; + s = tmp[t].slot; if (s != -1) store(p->to, s); } else -- cgit 1.4.1