[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Aug 11 10:25:19 PDT 2006
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAG.h updated: 1.111 -> 1.112
---
Log message:
remove a (now) unused getNode method.
---
Diffs of the changes: (+0 -5)
SelectionDAG.h | 5 -----
1 files changed, 5 deletions(-)
Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.111 llvm/include/llvm/CodeGen/SelectionDAG.h:1.112
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.111 Mon Aug 7 21:23:41 2006
+++ llvm/include/llvm/CodeGen/SelectionDAG.h Fri Aug 11 12:25:05 2006
@@ -217,11 +217,6 @@
}
SDOperand getNode(unsigned Opcode, std::vector<MVT::ValueType> &ResultTys,
const SDOperand *Ops, unsigned NumOps);
- SDOperand getNode(unsigned Opcode, std::vector<MVT::ValueType> &ResultTys,
- const std::vector<SDOperand> &Ops) {
- return getNode(Opcode, ResultTys, &Ops[0], Ops.size());
- }
-
/// getSetCC - Helper function to make it easier to build SetCC's if you just
/// have an ISD::CondCode instead of an SDOperand.
More information about the llvm-commits
mailing list