From 246db8de3dbb65f4017a2378c5b6d794fec969ab Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 11 Aug 2006 17:40:26 +0000 Subject: [PATCH] Remove now-dead method. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29615 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/SelectionDAG.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index b75d5af8852..aee44b34514 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -211,10 +211,6 @@ public: SDOperand N5); SDOperand getNode(unsigned Opcode, MVT::ValueType VT, const SDOperand *Ops, unsigned NumOps); - SDOperand getNode(unsigned Opcode, MVT::ValueType VT, - const std::vector &Ops) { - return getNode(Opcode, VT, &Ops[0], Ops.size()); - } SDOperand getNode(unsigned Opcode, std::vector &ResultTys, const SDOperand *Ops, unsigned NumOps);