mirror of https://github.com/xemu-project/xemu.git
Fix rfe instruction
The rfe instruction has been broken since patch
5a839c0d54
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>
This commit is contained in:
parent
f10acc8b38
commit
5866e07877
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue