Compulsive reformatting.

llvm-svn: 189697
This commit is contained in:
Bill Wendling 2013-08-30 21:07:33 +00:00
parent de8e3a097c
commit 2865be79f8
1 changed files with 5 additions and 2 deletions

View File

@ -141,8 +141,11 @@ bool InternalizePass::runOnModule(Module &M) {
!I->hasLocalLinkage() && // Can't already have internal linkage
!ExternalNames.count(I->getName())) {// Not marked to keep external?
I->setLinkage(GlobalValue::InternalLinkage);
// Remove a callgraph edge from the external node to this function.
if (ExternalNode) ExternalNode->removeOneAbstractEdgeTo((*CG)[I]);
if (ExternalNode)
// Remove a callgraph edge from the external node to this function.
ExternalNode->removeOneAbstractEdgeTo((*CG)[I]);
Changed = true;
++NumFunctions;
DEBUG(dbgs() << "Internalizing func " << I->getName() << "\n");