diff --git a/qemu/target/arm/translate.c b/qemu/target/arm/translate.c index 19aebd46..950a0c3c 100644 --- a/qemu/target/arm/translate.c +++ b/qemu/target/arm/translate.c @@ -8819,6 +8819,9 @@ static ISSInfo make_issinfo(DisasContext *s, int rd, bool p, bool w) /* ISS not valid if writeback */ if (p && !w) { ret = rd; + if (s->base.pc_next - s->pc_curr == 2) { + ret |= ISSIs16Bit; + } } else { ret = ISSInvalid; }