summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenInstruction.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-08-08 01:49:35 +0000
committerBill Wendling <isanbard@gmail.com>2010-08-08 01:49:35 +0000
commit73739d0bf19af3944aff6afaea2c4eda61061652 (patch)
treedc3396c783f311ec6d00f0012a1e801f072a8c31 /utils/TableGen/CodeGenInstruction.cpp
parenta5c4cc5f34c0d211fbe639168fa01c6364c9b888 (diff)
downloadllvm-73739d0bf19af3944aff6afaea2c4eda61061652.tar.gz
llvm-73739d0bf19af3944aff6afaea2c4eda61061652.tar.bz2
llvm-73739d0bf19af3944aff6afaea2c4eda61061652.tar.xz
Add back in r109901, which adds a Compare flag to the target instructions. It's
useful after all. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110531 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenInstruction.cpp')
-rw-r--r--utils/TableGen/CodeGenInstruction.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/TableGen/CodeGenInstruction.cpp b/utils/TableGen/CodeGenInstruction.cpp
index 35b54a5427..01a1fe11f5 100644
--- a/utils/TableGen/CodeGenInstruction.cpp
+++ b/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");