diff options
author | Evan Cheng <evan.cheng@apple.com> | 2005-12-04 08:18:16 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2005-12-04 08:18:16 +0000 |
commit | 1c3d19eb15b7109f75727bac84c65fcfecb65e51 (patch) | |
tree | 106873bf0efc68f02cfd1103b582a919d99aa318 /utils/TableGen/CodeGenInstruction.h | |
parent | f8ac8149578c0c9b96b2ab61ac8eef5d67c1a459 (diff) |
* Commit the fix (by Chris) for a tblgen type inferencing bug.
* Enhanced tblgen to handle instructions which have chain operand and writes a
chain result.
* Enhanced tblgen to handle instructions which produces no results. Part of
the change is a temporary hack which relies on instruction property (e.g.
isReturn, isBranch). The proper fix would be to change the .td syntax to
separate results dag from ops dag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24587 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenInstruction.h')
-rw-r--r-- | utils/TableGen/CodeGenInstruction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/TableGen/CodeGenInstruction.h b/utils/TableGen/CodeGenInstruction.h index be67754d3e..cee55d2856 100644 --- a/utils/TableGen/CodeGenInstruction.h +++ b/utils/TableGen/CodeGenInstruction.h @@ -84,6 +84,7 @@ namespace llvm { bool hasDelaySlot; bool usesCustomDAGSchedInserter; bool hasVariableNumberOfOperands; + bool hasCtrlDep; CodeGenInstruction(Record *R, const std::string &AsmStr); |