126,134d125
<
< // These otherwise unused bits of the PC are used to select a mode
< // like the J and T bits of the CPSR.
< static const Addr PcJBitShift = 33;
< static const Addr PcJBit = ULL(1) << PcJBitShift;
< static const Addr PcTBitShift = 34;
< static const Addr PcTBit = ULL(1) << PcTBitShift;
< static const Addr PcModeMask = (ULL(1) << PcJBitShift) |
< (ULL(1) << PcTBitShift);