summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenInstruction.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-02 02:29:04 +0000
committerChris Lattner <sabre@nondot.org>2005-01-02 02:29:04 +0000
commitaad75aa1a235ec1ab121ec2a9c745577493ed323 (patch)
tree4d48848668660d62077629cb5bbcecd06ffe594a /utils/TableGen/CodeGenInstruction.h
parent15f63ad2e59998f0bf1a3a23547582074391f650 (diff)
downloadllvm-aad75aa1a235ec1ab121ec2a9c745577493ed323.tar.gz
llvm-aad75aa1a235ec1ab121ec2a9c745577493ed323.tar.bz2
llvm-aad75aa1a235ec1ab121ec2a9c745577493ed323.tar.xz
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/CodeGenInstruction.h')
-rw-r--r--utils/TableGen/CodeGenInstruction.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/TableGen/CodeGenInstruction.h b/utils/TableGen/CodeGenInstruction.h
index 82df28ae2d..62b0289ed6 100644
--- a/utils/TableGen/CodeGenInstruction.h
+++ b/utils/TableGen/CodeGenInstruction.h
@@ -74,6 +74,8 @@ namespace llvm {
bool isLoad;
bool isStore;
bool isTwoAddress;
+ bool isConvertibleToThreeAddress;
+ bool isCommutable;
bool isTerminator;
bool hasDelaySlot;