summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2009-02-05 21:20:44 +0000
committerDale Johannesen <dalej@apple.com>2009-02-05 21:20:44 +0000
commit3eb373f5cef9e451a3602aa50d4e4bbadff56936 (patch)
tree5331c5ac561e3882a5fe923a3012a3e73fa63c07 /llvm/lib/CodeGen
parent354d3de098c3ccb31a671f93a7b94149e02e3bed (diff)
downloadbcm5719-llvm-3eb373f5cef9e451a3602aa50d4e4bbadff56936.tar.gz
bcm5719-llvm-3eb373f5cef9e451a3602aa50d4e4bbadff56936.zip
Remove 3 non-DebugLoc variants of getNode.
llvm-svn: 63886
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 524f5fffb5e..f527f72bf3e 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -3896,30 +3896,16 @@ SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList,
return SDValue(N, 0);
}
-SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
- return getNode(Opcode, DebugLoc::getUnknownLoc(), VTList);
-}
-
SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList) {
return getNode(Opcode, DL, VTList, 0, 0);
}
-SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
- SDValue N1) {
- return getNode(Opcode, DebugLoc::getUnknownLoc(), VTList, N1);
-}
-
SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList,
SDValue N1) {
SDValue Ops[] = { N1 };
return getNode(Opcode, DL, VTList, Ops, 1);
}
-SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
- SDValue N1, SDValue N2) {
- return getNode(Opcode, DebugLoc::getUnknownLoc(), VTList, N1, N2);
-}
-
SDValue SelectionDAG::getNode(unsigned Opcode, DebugLoc DL, SDVTList VTList,
SDValue N1, SDValue N2) {
SDValue Ops[] = { N1, N2 };
OpenPOWER on IntegriCloud