diff options
author | Owen Anderson <resistor@mac.com> | 2010-09-23 22:44:10 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-09-23 22:44:10 +0000 |
commit | 6e0e8d7d647bfc3ff39848809357d7e49a75fa31 (patch) | |
tree | b3a6d8616558607e0edddece2462a0007dde2c2c /llvm/utils/TableGen/CodeGenInstruction.cpp | |
parent | 16e264c5462ca476f96c36390b5263780d902a33 (diff) | |
download | bcm5719-llvm-6e0e8d7d647bfc3ff39848809357d7e49a75fa31.tar.gz bcm5719-llvm-6e0e8d7d647bfc3ff39848809357d7e49a75fa31.zip |
Add an TargetInstrDesc bit to indicate that a given instruction is a conditional move.
Not intended functionality change, as nothing uses this yet.
llvm-svn: 114702
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 01a1fe11f53..b36cf983a5f 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.cpp +++ b/llvm/utils/TableGen/CodeGenInstruction.cpp @@ -103,6 +103,7 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) isBranch = R->getValueAsBit("isBranch"); isIndirectBranch = R->getValueAsBit("isIndirectBranch"); isCompare = R->getValueAsBit("isCompare"); + isConditionalMove = R->getValueAsBit("isConditionalMove"); isBarrier = R->getValueAsBit("isBarrier"); isCall = R->getValueAsBit("isCall"); canFoldAsLoad = R->getValueAsBit("canFoldAsLoad"); |