diff options
Diffstat (limited to 'src/gallium/drivers/radeon/R600InstrInfo.h')
-rw-r--r-- | src/gallium/drivers/radeon/R600InstrInfo.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/R600InstrInfo.h b/src/gallium/drivers/radeon/R600InstrInfo.h index 5e160a0d57a..9bc534f2d0b 100644 --- a/src/gallium/drivers/radeon/R600InstrInfo.h +++ b/src/gallium/drivers/radeon/R600InstrInfo.h @@ -119,6 +119,12 @@ namespace llvm { ///IsFlagSet - Determine if the specified flag is set on this Operand. bool IsFlagSet(const MachineInstr &MI, unsigned Operand, unsigned Flag) const; + + ///GetFlagOp - Return the operand containing the flags for this instruction. + MachineOperand &GetFlagOp(MachineInstr *MI) const; + + ///ClearFlag - Clear the specified flag on the instruction. + void ClearFlag(MachineInstr *MI, unsigned Operand, unsigned Flag) const; }; } // End llvm namespace |