summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenInstruction.h
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2004-09-28 21:01:45 +0000
committerNate Begeman <natebegeman@mac.com>2004-09-28 21:01:45 +0000
commitcdd66b524f62ef6acd6bfa4e586edf8a406c4928 (patch)
treecb828c35e8a197955f69fee8c438f5443414cd44 /utils/TableGen/CodeGenInstruction.h
parent5b71d3af35f941585acb50de4909cff20f68680d (diff)
downloadllvm-cdd66b524f62ef6acd6bfa4e586edf8a406c4928.tar.gz
llvm-cdd66b524f62ef6acd6bfa4e586edf8a406c4928.tar.bz2
llvm-cdd66b524f62ef6acd6bfa4e586edf8a406c4928.tar.xz
Add support for the isLoad and isStore flags, needed by the instruction scheduler
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16554 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 8551a55308..82df28ae2d 100644
--- a/utils/TableGen/CodeGenInstruction.h
+++ b/utils/TableGen/CodeGenInstruction.h
@@ -71,6 +71,8 @@ namespace llvm {
bool isBranch;
bool isBarrier;
bool isCall;
+ bool isLoad;
+ bool isStore;
bool isTwoAddress;
bool isTerminator;
bool hasDelaySlot;