49a50,66
> * Microops of the form IntRegA = IntRegB op Imm
> */
> class MicroIntOp : public PredOp
> {
> protected:
> RegIndex ura, urb;
> uint8_t imm;
>
> MicroIntOp(const char *mnem, ExtMachInst machInst, OpClass __opClass,
> RegIndex _ura, RegIndex _urb, uint8_t _imm)
> : PredOp(mnem, machInst, __opClass),
> ura(_ura), urb(_urb), imm(_imm)
> {
> }
> };
>
> /**