aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-08-11 17:40:26 +0000
committerChris Lattner <sabre@nondot.org>2006-08-11 17:40:26 +0000
commit246db8de3dbb65f4017a2378c5b6d794fec969ab (patch)
tree651c5b88b508bcec3d33e292c6c9d3c9add50eb8
parente219945348207453a2d5e21021ba3211f8f94e25 (diff)
downloadexternal_llvm-246db8de3dbb65f4017a2378c5b6d794fec969ab.zip
external_llvm-246db8de3dbb65f4017a2378c5b6d794fec969ab.tar.gz
external_llvm-246db8de3dbb65f4017a2378c5b6d794fec969ab.tar.bz2
Remove now-dead method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29615 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index b75d5af..aee44b3 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<SDOperand> &Ops) {
- return getNode(Opcode, VT, &Ops[0], Ops.size());
- }
SDOperand getNode(unsigned Opcode, std::vector<MVT::ValueType> &ResultTys,
const SDOperand *Ops, unsigned NumOps);