All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH] target-alpha: fix subl and s8subl indentation
@ 2014-03-15 18:33 ` Paolo Bonzini
  0 siblings, 0 replies; 9+ messages in thread
From: Paolo Bonzini @ 2014-03-15 18:33 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, rth

Two missing braces, one close and one open, fabulously let the code
compile.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 target-alpha/translate.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/target-alpha/translate.c b/target-alpha/translate.c
index a9ef1a7..e7e319b 100644
--- a/target-alpha/translate.c
+++ b/target-alpha/translate.c
@@ -1927,6 +1927,7 @@ static ExitStatus translate_one(DisasContext *ctx, uint32_t insn)
                     else {
                         tcg_gen_neg_i64(cpu_ir[rc], cpu_ir[rb]);
                         tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rc]);
+                    }
                 }
             }
             break;
@@ -1991,7 +1992,7 @@ static ExitStatus translate_one(DisasContext *ctx, uint32_t insn)
                 } else {
                     if (islit)
                         tcg_gen_movi_i64(cpu_ir[rc], -lit);
-                    else
+                    else {
                         tcg_gen_neg_i64(cpu_ir[rc], cpu_ir[rb]);
                         tcg_gen_ext32s_i64(cpu_ir[rc], cpu_ir[rc]);
                     }
-- 
1.8.5.3



^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2014-03-18 21:34 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-15 18:33 [Qemu-trivial] [PATCH] target-alpha: fix subl and s8subl indentation Paolo Bonzini
2014-03-15 18:33 ` [Qemu-devel] " Paolo Bonzini
2014-03-15 20:40 ` [Qemu-trivial] " Richard Henderson
2014-03-15 20:40   ` [Qemu-devel] " Richard Henderson
2014-03-18 21:33   ` Stuart Brady
2014-03-15 23:47 ` [Qemu-trivial] " Peter Maydell
2014-03-15 23:47   ` Peter Maydell
2014-03-16  7:59   ` [Qemu-trivial] " Paolo Bonzini
2014-03-16  7:59     ` [Qemu-devel] " Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.