51,53c51,59
< inline ExtMachInst
< makeExtMI(MachInst inst, ThreadContext * xc) {
< ExtMachInst emi = (MachInst) inst;
---
> enum PredecodeResult {
> MoreBytes = 1,
> ExtMIReady = 2
> };
>
> inline unsigned int
> predecode(ExtMachInst &emi, Addr currPC, MachInst inst,
> ThreadContext * xc) {
> emi = inst;
64c70
< return emi;
---
> return MoreBytes | ExtMIReady;