diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-03-15 00:19:36 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-03-15 00:19:36 +0000 |
commit | ec7533b620b702d8b67ef599641700633713e85f (patch) | |
tree | 2ed4eb111bc370dda0395a68a84f4c29f796ca1d /llvm/utils/TableGen/CodeGenInstruction.cpp | |
parent | 0e7b00d79f9ca50edd2945135772f9a2d0f25ea0 (diff) | |
download | bcm5719-llvm-ec7533b620b702d8b67ef599641700633713e85f.tar.gz bcm5719-llvm-ec7533b620b702d8b67ef599641700633713e85f.zip |
Remove isImplicitDef TargetInstrDesc flag.
llvm-svn: 48381
Diffstat (limited to 'llvm/utils/TableGen/CodeGenInstruction.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenInstruction.cpp b/llvm/utils/TableGen/CodeGenInstruction.cpp index 8b706479077..53daf9d9446 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.cpp +++ b/llvm/utils/TableGen/CodeGenInstruction.cpp @@ -86,7 +86,6 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) isSimpleLoad = R->getValueAsBit("isSimpleLoad"); mayLoad = R->getValueAsBit("mayLoad"); mayStore = R->getValueAsBit("mayStore"); - isImplicitDef= R->getValueAsBit("isImplicitDef"); bool isTwoAddress = R->getValueAsBit("isTwoAddress"); isPredicable = R->getValueAsBit("isPredicable"); isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress"); |