diff options
author | Chris Lattner <sabre@nondot.org> | 2006-08-11 17:25:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-08-11 17:25:05 +0000 |
commit | 3cf55848d98128d5c4ae7d6e44c6082d34d3834a (patch) | |
tree | 8a83141d7fa9674a37c8d5fd300003533e9c5d6d /include/llvm | |
parent | 8742867f958221d4a8cbbba7eef309bfe037653c (diff) | |
download | external_llvm-3cf55848d98128d5c4ae7d6e44c6082d34d3834a.zip external_llvm-3cf55848d98128d5c4ae7d6e44c6082d34d3834a.tar.gz external_llvm-3cf55848d98128d5c4ae7d6e44c6082d34d3834a.tar.bz2 |
remove a (now) unused getNode method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29613 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 204b2eb..b75d5af 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -217,11 +217,6 @@ public: } 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. |