qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 17/18] Convert disas_vfp_insn not to use cpu_T.
@ 2009-07-19 15:20 Filip Navara
  2009-07-19 15:49 ` Filip Navara
  0 siblings, 1 reply; 2+ messages in thread
From: Filip Navara @ 2009-07-19 15:20 UTC (permalink / raw)
  To: qemu-devel

---
 target-arm/translate.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/target-arm/translate.c b/target-arm/translate.c
index c9338ff..da160a5 100644
--- a/target-arm/translate.c
+++ b/target-arm/translate.c
@@ -3197,10 +3197,10 @@ static int disas_vfp_insn(CPUState * env, DisasContext *s, uint32_t insn)
             else
                 rd = VFP_SREG_D(insn);
             if (s->thumb && rn == 15) {
-	            addr = new_tmp();
-	            tcg_gen_movi_i32(addr, s->pc & ~2);
+                addr = new_tmp();
+                tcg_gen_movi_i32(addr, s->pc & ~2);
             } else {
-	            addr = load_reg(s, rn);
+                addr = load_reg(s, rn);
             }
             if ((insn & 0x01200000) == 0x01000000) {
                 /* Single load/store */
@@ -3252,9 +3252,9 @@ static int disas_vfp_insn(CPUState * env, DisasContext *s, uint32_t insn)
 
                     if (offset != 0)
                         tcg_gen_addi_i32(addr, addr, offset);
-                    store_reg(s, rn, addr);                    
+                    store_reg(s, rn, addr);
                 } else {
-	                dead_tmp(addr);
+                    dead_tmp(addr);
                 }
             }
         }
-- 
1.6.3.2.1299.gee46c

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

end of thread, other threads:[~2009-07-19 15:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-19 15:20 [Qemu-devel] [PATCH 17/18] Convert disas_vfp_insn not to use cpu_T Filip Navara
2009-07-19 15:49 ` Filip Navara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).