diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-06-19 01:26:51 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-06-19 01:26:51 +0000 |
commit | a7ca624028c678eb123a4bfad051f7c40e094ef1 (patch) | |
tree | 5417965ad238cb433e903ef505bac3f41e7f22ea /llvm/utils/TableGen/CodeGenTarget.cpp | |
parent | 7d5696860bdc02b8c3eeb5dc129527c0260dc244 (diff) | |
download | bcm5719-llvm-a7ca624028c678eb123a4bfad051f7c40e094ef1.tar.gz bcm5719-llvm-a7ca624028c678eb123a4bfad051f7c40e094ef1.zip |
Replace TargetInstrInfo::CanBeDuplicated() with a M_NOT_DUPLICABLE bit.
llvm-svn: 37643
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp index c3c1ac22717..c54ecd02e48 100644 --- a/llvm/utils/TableGen/CodeGenTarget.cpp +++ b/llvm/utils/TableGen/CodeGenTarget.cpp @@ -371,6 +371,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) hasCtrlDep = R->getValueAsBit("hasCtrlDep"); noResults = R->getValueAsBit("noResults"); clobbersPred = R->getValueAsBit("clobbersPred"); + isNotDuplicable = R->getValueAsBit("isNotDuplicable"); hasVariableNumberOfOperands = false; DagInit *DI; |