aboutsummaryrefslogtreecommitdiff
path: root/linux-user/arm
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2021-04-23 09:54:11 -0700
committerLaurent Vivier <laurent@vivier.eu>2021-05-15 21:38:45 +0200
commitd827f6d5fdb0826e17c80f63547c5c2dee3f0fac (patch)
tree8e2369f188dc6a8a8021adb50c592f6d29fcafc5 /linux-user/arm
parentc1438d6c02eae03cc387dbdf2f30c11f45894954 (diff)
downloadqemu-d827f6d5fdb0826e17c80f63547c5c2dee3f0fac.zip
qemu-d827f6d5fdb0826e17c80f63547c5c2dee3f0fac.tar.gz
qemu-d827f6d5fdb0826e17c80f63547c5c2dee3f0fac.tar.bz2
linux-user/arm: Do not emulate fpa11 in thumb mode
These antiquated instructions are arm-mode only. Buglink: https://bugs.launchpad.net/bugs/1925512 Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20210423165413.338259-3-richard.henderson@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/arm')
-rw-r--r--linux-user/arm/cpu_loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/arm/cpu_loop.c b/linux-user/arm/cpu_loop.c
index 106909c..e2a1496 100644
--- a/linux-user/arm/cpu_loop.c
+++ b/linux-user/arm/cpu_loop.c
@@ -347,7 +347,7 @@ void cpu_loop(CPUARMState *env)
goto excp_debug;
}
- if (emulate_arm_fpa11(env, opcode)) {
+ if (!env->thumb && emulate_arm_fpa11(env, opcode)) {
break;
}