diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-07 02:39:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-07 02:39:19 +0000 |
commit | 8ca5c67c6e95fdcf5ddb2f06586873c843dd0cde (patch) | |
tree | b9e21ae796516ae90af9ada2915fadf2cf616e53 /lib/CodeGen/MachineInstr.cpp | |
parent | 572742e876478d3ec7ff0750c0473d7621804b15 (diff) |
Add predicates methods to TargetOperandInfo, and switch all clients
over to using them, instead of diddling Flags directly. Change the
various flags from const variables to enums.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45677 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index 40ab4c2dd9..49b7ef2682 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -541,7 +541,7 @@ int MachineInstr::findFirstPredOperandIdx() const { const TargetInstrDescriptor *TID = getDesc(); if (TID->isPredicable()) { for (unsigned i = 0, e = getNumOperands(); i != e; ++i) - if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND)) + if (TID->OpInfo[i].isPredicate()) return i; } @@ -591,7 +591,7 @@ void MachineInstr::copyPredicates(const MachineInstr *MI) { const TargetInstrDescriptor *TID = MI->getDesc(); if (TID->isPredicable()) { for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) { - if ((TID->OpInfo[i].Flags & M_PREDICATE_OPERAND)) { + if (TID->OpInfo[i].isPredicate()) { // Predicated operands must be last operands. addOperand(MI->getOperand(i)); } |