mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
Fix rdar://7879828 - crash in CallGraph, a self host issue.
Arg promotion was deleting call graph nodes that still had references from the 'indirect' CGN. Like the inliner, it should only delete the function if all references are gone. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101845 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -105,7 +105,7 @@ bool ArgPromotion::runOnSCC(CallGraphSCC &SCC) {
|
||||
}
|
||||
Changed |= LocalChange; // Remember that we changed something.
|
||||
} while (LocalChange);
|
||||
|
||||
|
||||
return Changed;
|
||||
}
|
||||
|
||||
@@ -874,8 +874,14 @@ CallGraphNode *ArgPromotion::DoPromotion(Function *F,
|
||||
|
||||
NF_CGN->stealCalledFunctionsFrom(CG[F]);
|
||||
|
||||
// Now that the old function is dead, delete it.
|
||||
delete CG.removeFunctionFromModule(F);
|
||||
// Now that the old function is dead, delete it. If there is a dangling
|
||||
// reference to the CallgraphNode, just leave the dead function around for
|
||||
// someone else to nuke.
|
||||
CallGraphNode *CGN = CG[F];
|
||||
if (CGN->getNumReferences() == 0)
|
||||
delete CG.removeFunctionFromModule(CGN);
|
||||
else
|
||||
F->setLinkage(Function::ExternalLinkage);
|
||||
|
||||
return NF_CGN;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user