diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-20 00:46:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-20 00:46:50 +0000 |
commit | e93846762a61f04e6f7d2bd6fb7118c7abbc15d1 (patch) | |
tree | 9a06263a91cc65b85f7c79a49d57584dbd1f5783 /llvm/lib/Transforms | |
parent | 3df671a81c4b4574d2c2fa2527ce813393426e09 (diff) | |
download | bcm5719-llvm-e93846762a61f04e6f7d2bd6fb7118c7abbc15d1.tar.gz bcm5719-llvm-e93846762a61f04e6f7d2bd6fb7118c7abbc15d1.zip |
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.
llvm-svn: 101845
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/IPO/ArgumentPromotion.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp b/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp index 8cca4c6681a..89f213e2ac3 100644 --- a/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp +++ b/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp @@ -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; } |