459c459,460
< nopIop = InstObjParams("nop", "NopInst", "ArmStaticInst", "", [])
---
> nopIop = InstObjParams("nop", "NopInst", "PredOp", \
> { "code" : "", "predicate_test" : predicateTest })
462c463
< exec_output += BasicExecute.subst(nopIop)
---
> exec_output += PredOpExecute.subst(nopIop)
463a465,471
> itIop = InstObjParams("it", "ItInst", "PredOp", \
> { "code" : "Itstate = machInst.newItstate;",
> "predicate_test" : predicateTest })
> header_output += BasicDeclare.subst(itIop)
> decoder_output += BasicConstructor.subst(itIop)
> exec_output += PredOpExecute.subst(itIop)
>