forked from OSchip/llvm-project
The Globals graph must become complete at the end of the BU phase!
llvm-svn: 8638
This commit is contained in:
parent
880b9aa10a
commit
413b7bde7c
|
@ -48,6 +48,11 @@ bool BUDataStructures::run(Module &M) {
|
|||
}
|
||||
|
||||
NumCallEdges += ActualCallees.size();
|
||||
|
||||
// At the end of the bottom-up pass, the globals graph becomes complete.
|
||||
// FIXME: This is not the right way to do this, but it is sorta better than
|
||||
// nothing!
|
||||
GlobalsGraph->maskIncompleteMarkers();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue