]> Git Repo - qemu.git/commitdiff
Fix rfe instruction
authorPeter Chubb <[email protected]>
Thu, 30 May 2013 18:50:50 +0000 (18:50 +0000)
committerPeter Maydell <[email protected]>
Mon, 3 Jun 2013 13:59:29 +0000 (14:59 +0100)
The rfe instruction has been broken since patch
5a839c0d54fac9db0516904db873a4fe01f50f4b because of a typo.

Signed-off-by: Peter Chubb <[email protected]>
Reviewed-by: Peter Maydell <[email protected]>
Signed-off-by: Peter Maydell <[email protected]>
target-arm/translate.c

index 71135bdef1c1807077a8e076f15e130457c2ba2e..b462f4bad08f3e6cecc804aa0adf1efb5dcc5b1e 100644 (file)
@@ -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) {
This page took 0.046483 seconds and 4 git commands to generate.