diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-22 14:00:21 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-22 14:00:21 -0500 |
commit | 2ee3d2ec2ef64ef35e60d6d88ad61303dd0ba70d (patch) | |
tree | 5f7e3927da756c44855f194f409ed42cf9d5243f /lisc/spill.c | |
parent | e400e177b60cfe3da56c12aca0a9321c2acabcfe (diff) | |
download | roux-2ee3d2ec2ef64ef35e60d6d88ad61303dd0ba70d.tar.gz |
cosmetics
Diffstat (limited to 'lisc/spill.c')
-rw-r--r-- | lisc/spill.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisc/spill.c b/lisc/spill.c index 5875fc0..daa1c1c 100644 --- a/lisc/spill.c +++ b/lisc/spill.c @@ -242,13 +242,11 @@ sethint(Bits *u, ulong r) static void reloads(Bits *u, Bits *v) { - int t, k; + int t; for (t=Tmp0; t<ntmp; t++) - if (BGET(*u, t) && !BGET(*v, t)) { - k = tmp[t].cls; - emit(OLoad, k, TMP(t), slot(t), R); - } + if (BGET(*u, t) && !BGET(*v, t)) + emit(OLoad, tmp[t].cls, TMP(t), slot(t), R); } static void |