* [Qemu-devel] [PULL 0/1] target-arm queue
@ 2013-06-03 14:14 Peter Maydell
2013-06-03 14:14 ` [Qemu-devel] [PULL 1/1] Fix rfe instruction Peter Maydell
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Peter Maydell @ 2013-06-03 14:14 UTC (permalink / raw)
To: Aurelien Jarno, Blue Swirl; +Cc: Anthony Liguori, qemu-devel, Paul Brook
Only one change in this pullreq, but I'm going away for a week
and I think the bugfix is worth getting into master before then.
Please pull.
thanks
-- PMM
The following changes since commit f10acc8b38d65a66ffa0588a036489d7fa6a593e:
tcx: Fix 24-bit display mode (2013-06-02 16:45:40 +0000)
are available in the git repository at:
git://git.linaro.org/people/pmaydell/qemu-arm.git target-arm.next
for you to fetch changes up to 5866e078770cba631a33e6d3062afa7a4068adf8:
Fix rfe instruction (2013-06-03 14:59:29 +0100)
----------------------------------------------------------------
Peter Chubb (1):
Fix rfe instruction
target-arm/translate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] [PULL 1/1] Fix rfe instruction
2013-06-03 14:14 [Qemu-devel] [PULL 0/1] target-arm queue Peter Maydell
@ 2013-06-03 14:14 ` Peter Maydell
2013-06-12 11:55 ` [Qemu-devel] [PULL 0/1] target-arm queue Peter Maydell
2013-06-17 21:17 ` Anthony Liguori
2 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2013-06-03 14:14 UTC (permalink / raw)
To: Aurelien Jarno, Blue Swirl; +Cc: Anthony Liguori, qemu-devel, Paul Brook
From: Peter Chubb <peter.chubb@nicta.com.au>
The rfe instruction has been broken since patch
5a839c0d54fac9db0516904db873a4fe01f50f4b because of a typo.
Signed-off-by: Peter Chubb <peter.chubb@nicta.com.au>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
target-arm/translate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target-arm/translate.c b/target-arm/translate.c
index 71135bd..b462f4b 100644
--- a/target-arm/translate.c
+++ b/target-arm/translate.c
@@ -6752,7 +6752,7 @@ static void disas_arm_insn(CPUARMState * env, DisasContext *s)
tcg_gen_qemu_ld32u(tmp, addr, 0);
tcg_gen_addi_i32(addr, addr, 4);
tmp2 = tcg_temp_new_i32();
- tcg_gen_qemu_ld32u(tmp, addr, 0);
+ tcg_gen_qemu_ld32u(tmp2, addr, 0);
if (insn & (1 << 21)) {
/* Base writeback. */
switch (i) {
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] target-arm queue
2013-06-03 14:14 [Qemu-devel] [PULL 0/1] target-arm queue Peter Maydell
2013-06-03 14:14 ` [Qemu-devel] [PULL 1/1] Fix rfe instruction Peter Maydell
@ 2013-06-12 11:55 ` Peter Maydell
2013-06-17 21:17 ` Anthony Liguori
2 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2013-06-12 11:55 UTC (permalink / raw)
To: Aurelien Jarno, Blue Swirl; +Cc: Anthony Liguori, qemu-devel, Paul Brook
Ping!
thanks
-- PMM
On 3 June 2013 15:14, Peter Maydell <peter.maydell@linaro.org> wrote:
> Only one change in this pullreq, but I'm going away for a week
> and I think the bugfix is worth getting into master before then.
> Please pull.
>
> thanks
> -- PMM
>
> The following changes since commit f10acc8b38d65a66ffa0588a036489d7fa6a593e:
>
> tcx: Fix 24-bit display mode (2013-06-02 16:45:40 +0000)
>
> are available in the git repository at:
>
> git://git.linaro.org/people/pmaydell/qemu-arm.git target-arm.next
>
> for you to fetch changes up to 5866e078770cba631a33e6d3062afa7a4068adf8:
>
> Fix rfe instruction (2013-06-03 14:59:29 +0100)
>
> ----------------------------------------------------------------
> Peter Chubb (1):
> Fix rfe instruction
>
> target-arm/translate.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] target-arm queue
2013-06-03 14:14 [Qemu-devel] [PULL 0/1] target-arm queue Peter Maydell
2013-06-03 14:14 ` [Qemu-devel] [PULL 1/1] Fix rfe instruction Peter Maydell
2013-06-12 11:55 ` [Qemu-devel] [PULL 0/1] target-arm queue Peter Maydell
@ 2013-06-17 21:17 ` Anthony Liguori
2 siblings, 0 replies; 4+ messages in thread
From: Anthony Liguori @ 2013-06-17 21:17 UTC (permalink / raw)
To: Peter Maydell, Aurelien Jarno, Blue Swirl
Cc: Anthony Liguori, qemu-devel, Paul Brook
Pulled. Thanks.
Regards,
Anthony Liguori
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-06-17 21:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-03 14:14 [Qemu-devel] [PULL 0/1] target-arm queue Peter Maydell
2013-06-03 14:14 ` [Qemu-devel] [PULL 1/1] Fix rfe instruction Peter Maydell
2013-06-12 11:55 ` [Qemu-devel] [PULL 0/1] target-arm queue Peter Maydell
2013-06-17 21:17 ` Anthony Liguori
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).