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.