diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-01-28 16:42:44 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-01-28 16:42:44 -0500 |
commit | 409bb9f838e46efe588d119832979b9a32ba591e (patch) | |
tree | b55fbd09888647776c05365fe25eb163ff97644e /lisc | |
parent | 69b6b9290f32c990b1de245c818ad93f73b1f139 (diff) | |
download | roux-409bb9f838e46efe588d119832979b9a32ba591e.tar.gz |
cosmetics
Diffstat (limited to 'lisc')
-rw-r--r-- | lisc/spill.c | 3 |
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 { |