diff options
author | Quentin Colombet <qcolombet@apple.com> | 2014-08-11 22:17:14 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2014-08-11 22:17:14 +0000 |
commit | d533cdf26f9a602b1f45734ebbc6169faee5dcdd (patch) | |
tree | 7bc4c4e5145da4f0ab0382e5a03db7173ac4960a /llvm/utils/TableGen/CodeGenInstruction.h | |
parent | 35f986d3cd6942cff0fc7f78062924ebebd6988d (diff) | |
download | bcm5719-llvm-d533cdf26f9a602b1f45734ebbc6169faee5dcdd.tar.gz bcm5719-llvm-d533cdf26f9a602b1f45734ebbc6169faee5dcdd.zip |
Add isRegSequence property.
This patch adds a new property: isRegSequence and the related target hooks:
TargetIntrInfo::getRegSequenceInputs and
TargetInstrInfo::getRegSequenceLikeInputs to specify that a target specific
instruction is a (kind of) REG_SEQUENCE.
<rdar://problem/12702965>
llvm-svn: 215394
Diffstat (limited to 'llvm/utils/TableGen/CodeGenInstruction.h')
-rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenInstruction.h b/llvm/utils/TableGen/CodeGenInstruction.h index f143875131b..59a4d2177ee 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.h +++ b/llvm/utils/TableGen/CodeGenInstruction.h @@ -253,6 +253,7 @@ namespace llvm { bool hasExtraDefRegAllocReq : 1; bool isCodeGenOnly : 1; bool isPseudo : 1; + bool isRegSequence : 1; std::string DeprecatedReason; bool HasComplexDeprecationPredicate; |