OSDN Git Service
(root)
/
android-x86
/
external-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8742867
)
remove a (now) unused getNode method.
author
Chris Lattner
<sabre@nondot.org>
Fri, 11 Aug 2006 17:25:05 +0000
(17:25 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Fri, 11 Aug 2006 17:25:05 +0000
(17:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29613
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/CodeGen/SelectionDAG.h
patch
|
blob
|
history
diff --git
a/include/llvm/CodeGen/SelectionDAG.h
b/include/llvm/CodeGen/SelectionDAG.h
index
204b2eb
..
b75d5af
100644
(file)
--- 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.