From 16dab31ed4c45e81cb7a45dfa22551fcbf097fa9 Mon Sep 17 00:00:00 2001 From: Ali Gholami Rudi Date: Sun, 22 May 2011 12:24:59 +0430 Subject: [PATCH] gen: fix reg_fortmp() indentation --- gen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gen.c b/gen.c index 3d837d9..e1e194b 100644 --- a/gen.c +++ b/gen.c @@ -321,9 +321,9 @@ static int reg_get(int mask) static int reg_fortmp(struct tmp *t, int notmask) { - if (t->loc == LOC_REG && !(notmask & (1 << t->addr))) - return t->addr; - return reg_get(~notmask); + if (t->loc == LOC_REG && !(notmask & (1 << t->addr))) + return t->addr; + return reg_get(~notmask); } static void tmp_copy(struct tmp *t1) -- 2.11.4.GIT