mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
initial steps to getting the predicate on PPC::BLR right.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31437 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e69c436e6f
commit
60a09a5d6d
@ -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.
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user