From: Filip Navara <filip.navara@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 17/18] Convert disas_vfp_insn not to use cpu_T.
Date: Sun, 19 Jul 2009 15:20:11 -0000 [thread overview]
Message-ID: <E1MSYBP-0001Su-6c@lists.gnu.org> (raw)
---
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
next reply other threads:[~2009-07-19 15:20 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-19 15:20 Filip Navara [this message]
2009-07-19 15:49 ` [Qemu-devel] [PATCH 17/18] Convert disas_vfp_insn not to use cpu_T Filip Navara
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1MSYBP-0001Su-6c@lists.gnu.org \
--to=filip.navara@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).