From 3cf55848d98128d5c4ae7d6e44c6082d34d3834a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 11 Aug 2006 17:25:05 +0000 Subject: [PATCH] remove a (now) unused getNode method. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29613 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/SelectionDAG.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 204b2eb8568..b75d5af8852 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -217,11 +217,6 @@ public: } SDOperand getNode(unsigned Opcode, std::vector &ResultTys, const SDOperand *Ops, unsigned NumOps); - SDOperand getNode(unsigned Opcode, std::vector &ResultTys, - const std::vector &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.