qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit 7bf505605f025a187916f13385de048b4d15462a
parent ed36bde01eca8b08ae4d01184aa8bef2abbddacb
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Fri, 22 Jan 2016 13:29:47 -0500

fix spacing

Diffstat:
Mlisc/isel.c | 18+++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)

diff --git 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); }