diff options
author | Evan Cheng <evan.cheng@apple.com> | 2005-12-23 22:11:47 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2005-12-23 22:11:47 +0000 |
commit | 7b05bd58149f7984257d7881aaa2bd9407628754 (patch) | |
tree | 7a1e888809ba1a2be1f8e6519cbfc67537680c8b /utils/TableGen/CodeGenTarget.cpp | |
parent | d6e8d4134022a3b451439a631b41744e9e07c034 (diff) |
* 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/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 c06b73f56f..b6ddd6285c 100644 --- a/utils/TableGen/CodeGenTarget.cpp +++ b/utils/TableGen/CodeGenTarget.cpp @@ -271,6 +271,8 @@ CodeGenInstruction::CodeGenInstruction(Record *R, const std::string &AsmStr) hasDelaySlot = R->getValueAsBit("hasDelaySlot"); usesCustomDAGSchedInserter = R->getValueAsBit("usesCustomDAGSchedInserter"); hasCtrlDep = R->getValueAsBit("hasCtrlDep"); + hasInFlag = R->getValueAsBit("hasInFlag"); + hasOutFlag = R->getValueAsBit("hasOutFlag"); hasVariableNumberOfOperands = false; DagInit *DI; |