diff options
author | Owen Anderson <resistor@mac.com> | 2010-09-23 23:45:25 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-09-23 23:45:25 +0000 |
commit | 2c5df619c412d6382301e362c2e1f3abd57f6f49 (patch) | |
tree | 81119d7104d5b5454ba1d065f7943ee7355827c9 /llvm/utils/TableGen/CodeGenInstruction.cpp | |
parent | 7fbbe9a43a2963b964f7775e75424fef8704c7b5 (diff) | |
download | bcm5719-llvm-2c5df619c412d6382301e362c2e1f3abd57f6f49.tar.gz bcm5719-llvm-2c5df619c412d6382301e362c2e1f3abd57f6f49.zip |
Revert r114703 and r114702, removing the isConditionalMove flag from instructions. After further
reflection, this isn't going to achieve the purpose I intended it for. Back to the drawing board!
llvm-svn: 114710
Diffstat (limited to 'llvm/utils/TableGen/CodeGenInstruction.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenInstruction.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenInstruction.cpp b/llvm/utils/TableGen/CodeGenInstruction.cpp index b36cf983a5f..01a1fe11f53 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.cpp +++ b/llvm/utils/TableGen/CodeGenInstruction.cpp @@ -103,7 +103,6 @@ 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"); |