mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Remove trivially dead nodes was not removing nodes that were dead due to forwarding!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8634 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a2d51afd79
commit
bab8c28924
@ -1228,6 +1228,20 @@ void DSGraph::removeTriviallyDeadNodes() {
|
||||
removeIdenticalCalls(FunctionCalls);
|
||||
removeIdenticalCalls(AuxFunctionCalls);
|
||||
|
||||
// Loop over all of the nodes in the graph, calling getNode on each field.
|
||||
// This will cause all nodes to update their forwarding edges, causing
|
||||
// forwarded nodes to be delete-able.
|
||||
for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
|
||||
DSNode *N = Nodes[i];
|
||||
for (unsigned l = 0, e = N->getNumLinks(); l != e; ++l)
|
||||
N->getLink(l*N->getPointerSize()).getNode();
|
||||
}
|
||||
|
||||
// Likewise, forward any edges from the scalar nodes...
|
||||
for (ScalarMapTy::iterator I = ScalarMap.begin(), E = ScalarMap.end();
|
||||
I != E; ++I)
|
||||
I->second.getNode();
|
||||
|
||||
bool isGlobalsGraph = !GlobalsGraph;
|
||||
|
||||
for (unsigned i = 0; i != Nodes.size(); ++i) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user