summaryrefslogtreecommitdiff
path: root/utils/TableGen/CodeGenInstruction.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2005-12-23 22:11:47 +0000
committerEvan Cheng <evan.cheng@apple.com>2005-12-23 22:11:47 +0000
commit7b05bd58149f7984257d7881aaa2bd9407628754 (patch)
tree7a1e888809ba1a2be1f8e6519cbfc67537680c8b /utils/TableGen/CodeGenInstruction.h
parentd6e8d4134022a3b451439a631b41744e9e07c034 (diff)
downloadllvm-7b05bd58149f7984257d7881aaa2bd9407628754.tar.gz
llvm-7b05bd58149f7984257d7881aaa2bd9407628754.tar.bz2
llvm-7b05bd58149f7984257d7881aaa2bd9407628754.tar.xz
* Support for hasInFlag and hasOutFlag (on instructions). Remove nameless FLAG
support which is fragile. * Fixed a number of bugs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24996 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 cee55d2856..703da46804 100644
--- a/utils/TableGen/CodeGenInstruction.h
+++ b/utils/TableGen/CodeGenInstruction.h
@@ -85,6 +85,8 @@ namespace llvm {
bool usesCustomDAGSchedInserter;
bool hasVariableNumberOfOperands;
bool hasCtrlDep;
+ bool hasInFlag;
+ bool hasOutFlag;
CodeGenInstruction(Record *R, const std::string &AsmStr);