initial steps to getting the predicate on PPC::BLR right.

llvm-svn: 31437
This commit is contained in:
Chris Lattner 2006-11-03 23:52:18 +00:00
parent 4fcc04a32a
commit 4905d2c5b4
1 changed files with 11 additions and 0 deletions

View File

@ -222,6 +222,17 @@ def i16imm : Operand<i16>;
def i32imm : Operand<i32>;
def i64imm : Operand<i64>;
/// PredicateOperand - This can be used to define a predicate operand for an
/// instruction. OpTypes specifies the MIOperandInfo for the operand, and
/// AlwaysVal specifies the value of this predicate when set to "always
/// execute".
class PredicateOperand<dag OpTypes, dag AlwaysVal> : Operand<OtherVT> {
let MIOperandInfo = OpTypes;
dag ExecuteAlways = AlwaysVal;
}
// InstrInfo - This class should only be instantiated once to provide parameters
// which are global to the the target machine.
//