summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrInfoEmitter.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-05-16 20:45:24 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-05-16 20:45:24 +0000
commit5127ce09a4e4379f971280fab461a5f03befddbc (patch)
tree8c26224b7e3fd9bc95a78d953b57f2889c14e9a7 /utils/TableGen/InstrInfoEmitter.cpp
parent1bccb49082a8049d296dcdb2a741929437b6176f (diff)
downloadllvm-5127ce09a4e4379f971280fab461a5f03befddbc.tar.gz
llvm-5127ce09a4e4379f971280fab461a5f03befddbc.tar.bz2
llvm-5127ce09a4e4379f971280fab461a5f03befddbc.tar.xz
Rename M_PREDICATED to M_PREDICABLE; opcode can be specified isPredicable without having a PredicateOperand.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37116 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index 4db92bd870..090c35b01b 100644
--- a/utils/TableGen/InstrInfoEmitter.cpp
+++ b/utils/TableGen/InstrInfoEmitter.cpp
@@ -236,7 +236,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
if (Inst.isCall) OS << "|M_CALL_FLAG";
if (Inst.isLoad) OS << "|M_LOAD_FLAG";
if (Inst.isStore || isStore) OS << "|M_STORE_FLAG";
- if (Inst.isPredicated) OS << "|M_PREDICATED";
+ if (Inst.isPredicable) OS << "|M_PREDICABLE";
if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
if (Inst.isCommutable) OS << "|M_COMMUTABLE";
if (Inst.isTerminator) OS << "|M_TERMINATOR_FLAG";