diff options
author | Owen Anderson <resistor@mac.com> | 2015-05-28 18:33:39 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2015-05-28 18:33:39 +0000 |
commit | abaa523e9ee3db49fabd2c58824d817ce1528293 (patch) | |
tree | 1f59c629f718c28c691905c39d47185fa8bf3310 /llvm/utils/TableGen/CodeGenInstruction.h | |
parent | adc06311babfb81a51c6cf0b98b38ca3df2889d0 (diff) | |
download | bcm5719-llvm-abaa523e9ee3db49fabd2c58824d817ce1528293.tar.gz bcm5719-llvm-abaa523e9ee3db49fabd2c58824d817ce1528293.zip |
Add support for the convergent flag at the MC and MachineInstr levels.
llvm-svn: 238450
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 bdbe546ec97..90ccee35f67 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.h +++ b/llvm/utils/TableGen/CodeGenInstruction.h @@ -255,6 +255,7 @@ namespace llvm { bool isRegSequence : 1; bool isExtractSubreg : 1; bool isInsertSubreg : 1; + bool isConvergent : 1; std::string DeprecatedReason; bool HasComplexDeprecationPredicate; |