diff options
author | Sjoerd Meijer <sjoerd.meijer@arm.com> | 2016-09-14 08:20:03 +0000 |
---|---|---|
committer | Sjoerd Meijer <sjoerd.meijer@arm.com> | 2016-09-14 08:20:03 +0000 |
commit | 724023a1ec21da0920ad760a1ddfb6ddfdb184d6 (patch) | |
tree | d789865555f9fe05d5152500d78e0ad6b21c1984 /llvm/utils/TableGen/CodeGenInstruction.cpp | |
parent | 0569d9d5886d16285f9d6c9ea30de170d3731006 (diff) | |
download | bcm5719-llvm-724023a1ec21da0920ad760a1ddfb6ddfdb184d6.tar.gz bcm5719-llvm-724023a1ec21da0920ad760a1ddfb6ddfdb184d6.zip |
This reapplies r281304. The issue was that I had missed
to copy the new isAdd field in the tablegen data structure.
llvm-svn: 281447
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 ec802363030..792aad87311 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.cpp +++ b/llvm/utils/TableGen/CodeGenInstruction.cpp @@ -309,6 +309,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R) isSelect = R->getValueAsBit("isSelect"); isBarrier = R->getValueAsBit("isBarrier"); isCall = R->getValueAsBit("isCall"); + isAdd = R->getValueAsBit("isAdd"); canFoldAsLoad = R->getValueAsBit("canFoldAsLoad"); isPredicable = Operands.isPredicable || R->getValueAsBit("isPredicable"); isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress"); |