[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/TopDownClosure.cpp

Chris Lattner lattner at cs.uiuc.edu
Sat Mar 19 20:30:07 PST 2005



Changes in directory llvm/lib/Analysis/DataStructure:

TopDownClosure.cpp updated: 1.77 -> 1.78
---
Log message:

This call is always a noop, remove it.


---
Diffs of the changes:  (+0 -9)

 TopDownClosure.cpp |    9 ---------
 1 files changed, 9 deletions(-)


Index: llvm/lib/Analysis/DataStructure/TopDownClosure.cpp
diff -u llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.77 llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.78
--- llvm/lib/Analysis/DataStructure/TopDownClosure.cpp:1.77	Sat Mar 19 20:39:49 2005
+++ llvm/lib/Analysis/DataStructure/TopDownClosure.cpp	Sat Mar 19 22:29:54 2005
@@ -185,15 +185,6 @@
       break;
     }
 
-  // Now fold in the necessary globals from the GlobalsGraph.  A global G
-  // must be folded in if it exists in the current graph (i.e., is not dead)
-  // and it was not inlined from any of my callers.  If it was inlined from
-  // a caller, it would have been fully consistent with the GlobalsGraph
-  // in the caller so folding in is not necessary.  Otherwise, this node came
-  // solely from this function's BU graph and so has to be made consistent.
-  // 
-  Graph.updateFromGlobalGraph();
-
   // Recompute the Incomplete markers.  Depends on whether args are complete
   unsigned Flags
     = HasIncompleteArgs ? DSGraph::MarkFormalArgs : DSGraph::IgnoreFormalArgs;






More information about the llvm-commits mailing list