[llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
Evan Cheng
evan.cheng at apple.com
Mon Jan 9 10:29:30 PST 2006
Changes in directory llvm/lib/CodeGen/SelectionDAG:
SelectionDAG.cpp updated: 1.234 -> 1.235
---
Log message:
New getNode() variants.
---
Diffs of the changes: (+0 -14)
SelectionDAG.cpp | 14 --------------
1 files changed, 14 deletions(-)
Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.234 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.235
--- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.234 Wed Jan 4 19:25:28 2006
+++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Mon Jan 9 12:29:18 2006
@@ -1200,20 +1200,6 @@
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) {
More information about the llvm-commits
mailing list