mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 21:20:37 +00:00
SelectionDAG::AssignNodeIds is unused.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53636 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
90a7b8fba6
commit
4093d83010
@ -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.
|
||||
|
@ -4228,17 +4228,6 @@ void SelectionDAG::ReplaceAllUsesOfValueWith(SDOperand From, SDOperand To,
|
||||
}
|
||||
}
|
||||
|
||||
/// AssignNodeIds - Assign a unique node id for each node in the DAG based on
|
||||
/// their allnodes order. It returns the maximum id.
|
||||
unsigned SelectionDAG::AssignNodeIds() {
|
||||
unsigned Id = 0;
|
||||
for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I){
|
||||
SDNode *N = I;
|
||||
N->setNodeId(Id++);
|
||||
}
|
||||
return Id;
|
||||
}
|
||||
|
||||
/// 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.
|
||||
|
Loading…
Reference in New Issue
Block a user