diff options
Diffstat (limited to 'src/arch/arm/predecoder.hh')
-rw-r--r-- | src/arch/arm/predecoder.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/arm/predecoder.hh b/src/arch/arm/predecoder.hh index bd4a7b03b..b21b77320 100644 --- a/src/arch/arm/predecoder.hh +++ b/src/arch/arm/predecoder.hh @@ -73,6 +73,7 @@ namespace ArmISA void moreBytes(Addr pc, Addr fetchPC, MachInst inst) { emi = inst; + emi.thumb = (pc & (ULL(1) << PcTBitShift)); emi.sevenAndFour = bits(inst, 7) && bits(inst, 4); emi.isMisc = (bits(inst, 24, 23) == 0x2 && bits(inst, 20) == 0); } |