diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-08-08 01:49:35 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-08-08 01:49:35 +0000 |
commit | 18e853f458caee9676c2e29a39aacb7914d85dc4 (patch) | |
tree | d1087f666ed3a0a795688f64ad8524d6fb4bdc1c /llvm/utils/TableGen/CodeGenInstruction.cpp | |
parent | 6ff7161d51a9e5a43fd7e69ab2df69a67fcd12e3 (diff) | |
download | bcm5719-llvm-18e853f458caee9676c2e29a39aacb7914d85dc4.tar.gz bcm5719-llvm-18e853f458caee9676c2e29a39aacb7914d85dc4.zip |
Add back in r109901, which adds a Compare flag to the target instructions. It's
useful after all.
llvm-svn: 110531
Diffstat (limited to 'llvm/utils/TableGen/CodeGenInstruction.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenInstruction.cpp b/llvm/utils/TableGen/CodeGenInstruction.cpp index 35b54a54271..01a1fe11f53 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.cpp +++ b/llvm/utils/TableGen/CodeGenInstruction.cpp @@ -102,6 +102,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) isReturn = R->getValueAsBit("isReturn"); isBranch = R->getValueAsBit("isBranch"); isIndirectBranch = R->getValueAsBit("isIndirectBranch"); + isCompare = R->getValueAsBit("isCompare"); isBarrier = R->getValueAsBit("isBarrier"); isCall = R->getValueAsBit("isCall"); canFoldAsLoad = R->getValueAsBit("canFoldAsLoad"); |