diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-01-22 13:29:47 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-01-22 13:29:47 -0500 |
commit | 7bf505605f025a187916f13385de048b4d15462a (patch) | |
tree | 3d813d8d6ba3bd02a73d85a879be6a831508a395 /lisc/isel.c | |
parent | ed36bde01eca8b08ae4d01184aa8bef2abbddacb (diff) | |
download | roux-7bf505605f025a187916f13385de048b4d15462a.tar.gz |
fix spacing
Diffstat (limited to 'lisc/isel.c')
-rw-r--r-- | lisc/isel.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lisc/isel.c b/lisc/isel.c index 4a62585..ec2fdd0 100644 --- a/lisc/isel.c +++ b/lisc/isel.c @@ -78,9 +78,9 @@ fixarg(Ref *r, int k, int phi, Fn *fn) s = rslot(r0, fn); if (KBASE(k) == 1 && rtype(r0) == RCon) { /* load floating points from memory - * slots, they can't be used as - * immediates - */ + * slots, they can't be used as + * immediates + */ r1 = MEM(fn->nmem); vgrow(&fn->mem, ++fn->nmem); memset(&a, 0, sizeof a); @@ -91,17 +91,17 @@ fixarg(Ref *r, int k, int phi, Fn *fn) } else if (!phi && rtype(r0) == RCon && noimm(r0, fn)) { /* load constants that do not fit in - * a 32bit signed integer into a - * long temporary - */ + * a 32bit signed integer into a + * long temporary + */ r1 = newtmp("isel", fn); emit(OCopy, Kl, r1, r0, R); } else if (s != -1) { /* load fast locals' addresses into - * temporaries right before the - * instruction - */ + * temporaries right before the + * instruction + */ r1 = newtmp("isel", fn); emit(OAddr, Kl, r1, SLOT(s), R); } |