mirror of https://github.com/xemu-project/xemu.git
target-arm: Fix missing 'return' in SRS handling.
There's a return missing in the srs handling which leads to srs always being treated an an invalid op. Signed-off-by: Adam Lackorzynski <adam@os.inf.tu-dresden.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
44bb61c8d9
commit
a990f58fed
|
@ -6131,6 +6131,7 @@ static void disas_arm_insn(CPUState * env, DisasContext *s)
|
||||||
} else {
|
} else {
|
||||||
dead_tmp(addr);
|
dead_tmp(addr);
|
||||||
}
|
}
|
||||||
|
return;
|
||||||
} else if ((insn & 0x0e5fffe0) == 0x081d0a00) {
|
} else if ((insn & 0x0e5fffe0) == 0x081d0a00) {
|
||||||
/* rfe */
|
/* rfe */
|
||||||
int32_t offset;
|
int32_t offset;
|
||||||
|
|
Loading…
Reference in New Issue