diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-09-12 23:39:49 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-09-12 23:39:49 +0000 |
commit | e1d067ec05cf080937c2f21f5d1b9a5c59bfd4da (patch) | |
tree | 93aa7c348bfea6a5a361b4c698be2fe9d5ec5cdc /include | |
parent | 775baac049a518afd0e1b703646efb72b4b11209 (diff) | |
download | external_llvm-e1d067ec05cf080937c2f21f5d1b9a5c59bfd4da.zip external_llvm-e1d067ec05cf080937c2f21f5d1b9a5c59bfd4da.tar.gz external_llvm-e1d067ec05cf080937c2f21f5d1b9a5c59bfd4da.tar.bz2 |
Yet another getTargetNode variant.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41898 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index ccda26f..05447e1 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -410,6 +410,10 @@ public: SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT1, MVT::ValueType VT2, MVT::ValueType VT3, const SDOperand *Ops, unsigned NumOps); + SDNode *getTargetNode(unsigned Opcode, MVT::ValueType VT1, + MVT::ValueType VT2, MVT::ValueType VT3, + MVT::ValueType VT4, + const SDOperand *Ops, unsigned NumOps); /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead. /// This can cause recursive merging of nodes in the DAG. Use the first |