diff --git a/qemu/target/arm/helper.c b/qemu/target/arm/helper.c index fb4110c1..682972f8 100644 --- a/qemu/target/arm/helper.c +++ b/qemu/target/arm/helper.c @@ -7880,6 +7880,14 @@ static void v7m_exception_taken(ARMCPU *cpu, uint32_t lr, bool dotailchain, // Unicorn: commented out //armv7m_nvic_get_pending_irq_info(env->nvic, &exc, &targets_secure); + if (dotailchain) { + /* Sanitize LR FType and PREFIX bits */ + if (!arm_feature(env, ARM_FEATURE_VFP)) { + lr |= R_V7M_EXCRET_FTYPE_MASK; + } + lr = deposit32(lr, 24, 8, 0xff); + } + if (arm_feature(env, ARM_FEATURE_V8)) { if (arm_feature(env, ARM_FEATURE_M_SECURITY) && (lr & R_V7M_EXCRET_S_MASK)) {