summary refs log tree commit diff
path: root/lisc/spill.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-01-28 16:42:44 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-01-28 16:42:44 -0500
commit409bb9f838e46efe588d119832979b9a32ba591e (patch)
treeb55fbd09888647776c05365fe25eb163ff97644e /lisc/spill.c
parent69b6b9290f32c990b1de245c818ad93f73b1f139 (diff)
downloadroux-409bb9f838e46efe588d119832979b9a32ba591e.tar.gz
cosmetics
Diffstat (limited to 'lisc/spill.c')
-rw-r--r--lisc/spill.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisc/spill.c b/lisc/spill.c
index ae9be00..6b6939f 100644
--- a/lisc/spill.c
+++ b/lisc/spill.c
@@ -307,8 +307,7 @@ dopm(Blk *b, Ins *i, Bits *v)
 	if (i != b->ins && (i-1)->op == OCall) {
 		v->t[0] &= ~calldef(*(i-1), 0);
 		limit2(v, NISave, NFSave, 0);
-		r = 0;
-		for (n=0; n<NRSave; n++)
+		for (r=0, n=0; n<NRSave; n++)
 			r |= BIT(rsave[n]);
 		v->t[0] |= calluse(*(i-1), 0);
 	} else {