mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Make sure to remove incomplete markers before we add to them! :)
llvm-svn: 20585
This commit is contained in:
parent
faf51a28e7
commit
361e6704b4
@ -98,6 +98,7 @@ bool BUDataStructures::runOnModule(Module &M) {
|
||||
if (isa<GlobalVariable>(*I))
|
||||
RC.getClonedNH(GG.getNodeForValue(*I));
|
||||
|
||||
MainGraph.maskIncompleteMarkers();
|
||||
MainGraph.markIncompleteNodes(DSGraph::MarkFormalArgs |
|
||||
DSGraph::IgnoreGlobals);
|
||||
}
|
||||
|
@ -107,6 +107,7 @@ bool CompleteBUDataStructures::runOnModule(Module &M) {
|
||||
if (isa<GlobalVariable>(*I))
|
||||
RC.getClonedNH(GG.getNodeForValue(*I));
|
||||
|
||||
MainGraph.maskIncompleteMarkers();
|
||||
MainGraph.markIncompleteNodes(DSGraph::MarkFormalArgs |
|
||||
DSGraph::IgnoreGlobals);
|
||||
}
|
||||
|
@ -120,6 +120,7 @@ bool EquivClassGraphs::runOnModule(Module &M) {
|
||||
if (isa<GlobalVariable>(*I))
|
||||
RC.getClonedNH(GG.getNodeForValue(*I));
|
||||
|
||||
MainGraph.maskIncompleteMarkers();
|
||||
MainGraph.markIncompleteNodes(DSGraph::MarkFormalArgs |
|
||||
DSGraph::IgnoreGlobals);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user