summaryrefslogtreecommitdiff
path: root/utils/TableGen/InstrInfoEmitter.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-03-15 00:19:36 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-03-15 00:19:36 +0000
commit20ccded7dec5b90e58f649f4fb95b166a642b8cb (patch)
tree34bde3b6137dfbc1835e24555a6f81307579e826 /utils/TableGen/InstrInfoEmitter.cpp
parentda47e6e0d003c873da960361549e57ee4617c301 (diff)
downloadllvm-20ccded7dec5b90e58f649f4fb95b166a642b8cb.tar.gz
llvm-20ccded7dec5b90e58f649f4fb95b166a642b8cb.tar.bz2
llvm-20ccded7dec5b90e58f649f4fb95b166a642b8cb.tar.xz
Remove isImplicitDef TargetInstrDesc flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48381 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.cpp')
-rw-r--r--utils/TableGen/InstrInfoEmitter.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.cpp b/utils/TableGen/InstrInfoEmitter.cpp
index 2ac76349d7..d765152d23 100644
--- a/utils/TableGen/InstrInfoEmitter.cpp
+++ b/utils/TableGen/InstrInfoEmitter.cpp
@@ -346,7 +346,6 @@ void InstrInfoEmitter::emitRecord(const CodeGenInstruction &Inst, unsigned Num,
if (Inst.isSimpleLoad) OS << "|(1<<TID::SimpleLoad)";
if (mayLoad) OS << "|(1<<TID::MayLoad)";
if (mayStore) OS << "|(1<<TID::MayStore)";
- if (Inst.isImplicitDef)OS << "|(1<<TID::ImplicitDef)";
if (Inst.isPredicable) OS << "|(1<<TID::Predicable)";
if (Inst.isConvertibleToThreeAddress) OS << "|(1<<TID::ConvertibleTo3Addr)";
if (Inst.isCommutable) OS << "|(1<<TID::Commutable)";