summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrInfoEmitter.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-03-19 06:20:37 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-03-19 06:20:37 +0000
commit04677a3b49b2dfb151c4f77345702da489293627 (patch)
tree7fc3345f8069c5424c70238a897a5c75691f3cdc /utils/TableGen/InstrInfoEmitter.cpp
parent5d5c93f659dd3f09375ea0fbe5d6c2df64791f73 (diff)
downloadllvm-04677a3b49b2dfb151c4f77345702da489293627.tar.gz
llvm-04677a3b49b2dfb151c4f77345702da489293627.tar.bz2
llvm-04677a3b49b2dfb151c4f77345702da489293627.tar.xz
Recognize target instruction flag 'isReMaterializable'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35159 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index 7ea85980da..6fc6d0f684 100644
--- a/utils/TableGen/InstrInfoEmitter.cpp
+++ b/utils/TableGen/InstrInfoEmitter.cpp
@@ -240,6 +240,7 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
if (Inst.isConvertibleToThreeAddress) OS << "|M_CONVERTIBLE_TO_3_ADDR";
if (Inst.isCommutable) OS << "|M_COMMUTABLE";
if (Inst.isTerminator) OS << "|M_TERMINATOR_FLAG";
+ if (Inst.isReMaterializable) OS << "|M_REMATERIALIZIBLE";
if (Inst.usesCustomDAGSchedInserter)
OS << "|M_USES_CUSTOM_DAG_SCHED_INSERTION";
if (Inst.hasVariableNumberOfOperands)