summaryrefslogtreecommitdiffstats
path: root/llvm/utils/TableGen/InstrInfoEmitter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-11-06 21:44:54 +0000
committerChris Lattner <sabre@nondot.org>2006-11-06 21:44:54 +0000
commit8a9c91de33b42adfb98e082bc5d221e7eae5b179 (patch)
tree51c5de94394e2b317481ce447dc8dd2ce21aa39e /llvm/utils/TableGen/InstrInfoEmitter.cpp
parent27f894f3bf7f0f223468bb701e051f15eb7ff75d (diff)
downloadbcm5719-llvm-8a9c91de33b42adfb98e082bc5d221e7eae5b179.tar.gz
bcm5719-llvm-8a9c91de33b42adfb98e082bc5d221e7eae5b179.zip
recognize ppc's blr instruction as predicated
llvm-svn: 31480
Diffstat (limited to 'llvm/utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r--llvm/utils/TableGen/InstrInfoEmitter.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/InstrInfoEmitter.cpp b/llvm/utils/TableGen/InstrInfoEmitter.cpp
index bf69d08523a..41fb6969944 100644
--- a/llvm/utils/TableGen/InstrInfoEmitter.cpp
+++ b/llvm/utils/TableGen/InstrInfoEmitter.cpp
@@ -225,6 +225,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
if (Inst.isLoad) OS << "|M_LOAD_FLAG";
if (Inst.isStore || isStore) OS << "|M_STORE_FLAG";
if (Inst.isTwoAddress) OS << "|M_2_ADDR_FLAG";
+ if (Inst.isPredicated) OS << "|M_PREDICATED";
if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
if (Inst.isCommutable) OS << "|M_COMMUTABLE";
if (Inst.isTerminator) OS << "|M_TERMINATOR_FLAG";
OpenPOWER on IntegriCloud