diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-01-09 18:29:18 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-01-09 18:29:18 +0000 |
commit | 53a1f57fc524305b8bf620bd734ac4c92d1c4452 (patch) | |
tree | 7d14f92a110e30797288330137ba42490013d8df /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 7785e5b3a414b02e4a9a6c68f0b24c95d688ff02 (diff) | |
download | bcm5719-llvm-53a1f57fc524305b8bf620bd734ac4c92d1c4452.tar.gz bcm5719-llvm-53a1f57fc524305b8bf620bd734ac4c92d1c4452.zip |
New getNode() variants.
llvm-svn: 25156
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index b067c122ac7..5a0e2bf386e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -1200,20 +1200,6 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT, return getNode(Opcode, VT, Ops); } -SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT, - SDOperand N1, SDOperand N2, SDOperand N3, - SDOperand N4, SDOperand N5, SDOperand N6) { - std::vector<SDOperand> Ops; - Ops.reserve(6); - Ops.push_back(N1); - Ops.push_back(N2); - Ops.push_back(N3); - Ops.push_back(N4); - Ops.push_back(N5); - Ops.push_back(N6); - return getNode(Opcode, VT, Ops); -} - // setAdjCallChain - This method changes the token chain of an // CALLSEQ_START/END node to be the specified operand. void SDNode::setAdjCallChain(SDOperand N) { |