aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetInstrDesc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Target/TargetInstrDesc.h')
-rw-r--r--include/llvm/Target/TargetInstrDesc.h7
1 files changed, 0 insertions, 7 deletions
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.