diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-02 02:29:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-02 02:29:04 +0000 |
commit | aad75aa1a235ec1ab121ec2a9c745577493ed323 (patch) | |
tree | 4d48848668660d62077629cb5bbcecd06ffe594a /utils/TableGen/CodeGenTarget.cpp | |
parent | 15f63ad2e59998f0bf1a3a23547582074391f650 (diff) |
Expose isConvertibleToThreeAddress and isCommutable bits to the code generator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19243 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | utils/TableGen/CodeGenTarget.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp index 3680f197c4..b9c8bdbb9f 100644 --- a/utils/TableGen/CodeGenTarget.cpp +++ b/utils/TableGen/CodeGenTarget.cpp @@ -217,6 +217,8 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) isLoad = R->getValueAsBit("isLoad"); isStore = R->getValueAsBit("isStore"); isTwoAddress = R->getValueAsBit("isTwoAddress"); + isConvertibleToThreeAddress = R->getValueAsBit("isConvertibleToThreeAddress"); + isCommutable = R->getValueAsBit("isCommutable"); isTerminator = R->getValueAsBit("isTerminator"); hasDelaySlot = R->getValueAsBit("hasDelaySlot"); |