summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-07-15 18:29:32 +0000
committerDan Gohman <gohman@apple.com>2008-07-15 18:29:32 +0000
commit4093d8301021c9dde8d3577903366cfb8b5d82d0 (patch)
treeec43d507e06e509326966a5c7b0620d75cf4fc3f /include
parent90a7b8fba69503c950aa598fac2edc77123b6bf0 (diff)
downloadllvm-4093d8301021c9dde8d3577903366cfb8b5d82d0.tar.gz
llvm-4093d8301021c9dde8d3577903366cfb8b5d82d0.tar.bz2
llvm-4093d8301021c9dde8d3577903366cfb8b5d82d0.tar.xz
SelectionDAG::AssignNodeIds is unused.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53636 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 c370c246e3..636e36d591 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -565,10 +565,6 @@ public:
void ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
DAGUpdateListener *UpdateListener = 0);
- /// AssignNodeIds - Assign a unique node id for each node in the DAG based on
- /// their allnodes order. It returns the maximum id.
- unsigned AssignNodeIds();
-
/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
/// based on their topological order. It returns the maximum id and a vector
/// of the SDNodes* in assigned order by reference.