[llvm-commits] CVS: llvm/include/llvm/Analysis/DSGraph.h

Chris Lattner lattner at cs.uiuc.edu
Sat Nov 9 16:08:10 PST 2002


Changes in directory llvm/include/llvm/Analysis:

DSGraph.h updated: 1.36 -> 1.37

---
Log message:

eliminate the ability to remove global nodes from deadNodeElminate... for now.
This slows stuff down a bit, but it should get much better before it gets any 
worse.



---
Diffs of the changes:

Index: llvm/include/llvm/Analysis/DSGraph.h
diff -u llvm/include/llvm/Analysis/DSGraph.h:1.36 llvm/include/llvm/Analysis/DSGraph.h:1.37
--- llvm/include/llvm/Analysis/DSGraph.h:1.36	Sat Nov  9 15:02:30 2002
+++ llvm/include/llvm/Analysis/DSGraph.h	Sat Nov  9 16:07:02 2002
@@ -135,7 +135,7 @@
   // from the caller's graph entirely.  This is only appropriate to use when
   // inlining graphs.
   //
-  void removeDeadNodes(bool KeepAllGlobals);
+  void removeDeadNodes();
 
   // CloneFlags enum - Bits that may be passed into the cloneInto method to
   // specify how to clone the function graph.
@@ -172,7 +172,7 @@
   // merged with other nodes in the graph.  This is used as the first step of
   // removeDeadNodes.
   //
-  void removeTriviallyDeadNodes(bool KeepAllGlobals = false);
+  void removeTriviallyDeadNodes();
 };
 
 #endif





More information about the llvm-commits mailing list