commit | b9e2a4dec0e32e2bb966be1c761adfdb687f1454 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Mar 13 20:32:26 2005 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Mar 13 20:32:26 2005 +0000 |
tree | 237c660c433d8a48d8657a819b4588d08c4e924e | |
parent | 5a6609771adc4ac2b7c6d96e8f86ea2b535d8d5b [diff] |
Make sure to remove incomplete markers before we add to them! :) llvm-svn: 20585
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index ba559bb..5fca3ad 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp
@@ -98,6 +98,7 @@ if (isa<GlobalVariable>(*I)) RC.getClonedNH(GG.getNodeForValue(*I)); + MainGraph.maskIncompleteMarkers(); MainGraph.markIncompleteNodes(DSGraph::MarkFormalArgs | DSGraph::IgnoreGlobals); }
diff --git a/llvm/lib/Analysis/DataStructure/CompleteBottomUp.cpp b/llvm/lib/Analysis/DataStructure/CompleteBottomUp.cpp index 77a5f32..e38aebf 100644 --- a/llvm/lib/Analysis/DataStructure/CompleteBottomUp.cpp +++ b/llvm/lib/Analysis/DataStructure/CompleteBottomUp.cpp
@@ -107,6 +107,7 @@ if (isa<GlobalVariable>(*I)) RC.getClonedNH(GG.getNodeForValue(*I)); + MainGraph.maskIncompleteMarkers(); MainGraph.markIncompleteNodes(DSGraph::MarkFormalArgs | DSGraph::IgnoreGlobals); }
diff --git a/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp b/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp index 8dc2064..8e69291 100644 --- a/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp +++ b/llvm/lib/Analysis/DataStructure/EquivClassGraphs.cpp
@@ -120,6 +120,7 @@ if (isa<GlobalVariable>(*I)) RC.getClonedNH(GG.getNodeForValue(*I)); + MainGraph.maskIncompleteMarkers(); MainGraph.markIncompleteNodes(DSGraph::MarkFormalArgs | DSGraph::IgnoreGlobals); }