mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
Fix a bug where we would incorrectly delete globals which had edges to alive nodes in
a graph in the t-d pass. This slows down the TD pass by quite a bit (1/3), but is needed for correctness. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5464 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d4400c8297
commit
706e7ab871
@ -973,9 +973,6 @@ static bool CanReachAliveNodes(DSNode *N, hash_set<DSNode*> &Alive,
|
||||
if (Visited.count(N)) return false; // Found a cycle
|
||||
Visited.insert(N); // No recursion, insert into Visited...
|
||||
|
||||
if (N->NodeType & DSNode::GlobalNode)
|
||||
return false; // Global nodes will be marked on their own
|
||||
|
||||
for (unsigned i = 0, e = N->getSize(); i < e; i += DS::PointerSize)
|
||||
if (CanReachAliveNodes(N->getLink(i).getNode(), Alive, Visited)) {
|
||||
N->markReachableNodes(Alive);
|
||||
|
Loading…
Reference in New Issue
Block a user