51,65d50
< enum PredecodeResult {
< MoreBytes = 1,
< ExtMIReady = 2
< };
<
< static inline unsigned int
< predecode(ExtMachInst & ext_inst, Addr pc, MachInst inst, ThreadContext *) {
< ext_inst = inst;
< #if FULL_SYSTEM
< if (pc && 0x1)
< ext_inst|=(static_cast<ExtMachInst>(pc & 0x1) << 32);
< #endif
< return MoreBytes | ExtMIReady;
< }
<