diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/llvm/Target/Target.td | 1 | ||||
| -rw-r--r-- | include/llvm/Target/TargetInstrDesc.h | 7 |
2 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Target/Target.td b/include/llvm/Target/Target.td index 7d53123..b141a77 100644 --- a/include/llvm/Target/Target.td +++ b/include/llvm/Target/Target.td @@ -201,7 +201,6 @@ class Instruction { bit isCompare = 0; // Is this instruction a comparison instruction? bit isBarrier = 0; // Can control flow fall through this instruction? bit isCall = 0; // Is this instruction a call instruction? - bit isConditionalMove = 0; // Is this instruction a conditional move instr? bit canFoldAsLoad = 0; // Can this be folded as a simple memory operand? bit mayLoad = 0; // Is it possible for this inst to read memory? bit mayStore = 0; // Is it possible for this inst to write memory? diff --git a/include/llvm/Target/TargetInstrDesc.h b/include/llvm/Target/TargetInstrDesc.h index ee1ac5f..a127aed 100644 --- a/include/llvm/Target/TargetInstrDesc.h +++ b/include/llvm/Target/TargetInstrDesc.h @@ -99,7 +99,6 @@ namespace TID { HasOptionalDef, Return, Call, - ConditionalMove, Barrier, Terminator, Branch, @@ -353,12 +352,6 @@ public: return Flags & (1 << TID::Compare); } - /// isConditionalMove - Return true if this instruction can be considered a - /// conditional move, like CMOV on X86 or MOVCC on ARM. - bool isConditionalMove() const { - return Flags & (1 << TID::ConditionalMove); - } - /// isNotDuplicable - Return true if this instruction cannot be safely /// duplicated. For example, if the instruction has a unique labels attached /// to it, duplicating it would cause multiple definition errors. |
