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

Chris Lattner lattner at cs.uiuc.edu
Wed Oct 2 17:15:01 PDT 2002


Changes in directory llvm/include/llvm/Analysis:

DataStructure.h updated: 1.42 -> 1.43

---
Log message:

Remove commented out stuff
DataStructure.h doesn't include DSGraph.h now


---
Diffs of the changes:

Index: llvm/include/llvm/Analysis/DataStructure.h
diff -u llvm/include/llvm/Analysis/DataStructure.h:1.42 llvm/include/llvm/Analysis/DataStructure.h:1.43
--- llvm/include/llvm/Analysis/DataStructure.h:1.42	Wed Oct  2 16:55:52 2002
+++ llvm/include/llvm/Analysis/DataStructure.h	Wed Oct  2 17:14:17 2002
@@ -7,20 +7,10 @@
 #ifndef LLVM_ANALYSIS_DATA_STRUCTURE_H
 #define LLVM_ANALYSIS_DATA_STRUCTURE_H
 
-#include "llvm/Analysis/DSGraph.h"
 #include "llvm/Pass.h"
-#if 0
-#include "llvm/GlobalValue.h"
-#include "Support/HashExtras.h"
-#include "Support/hash_set"
-#include <set>
-#endif
 
 class Type;
-class GlobalValue;
-#if 0
-class GlobalDSGraph;           // A common graph for globals in a program 
-#endif
+class DSGraph;
 class LocalDataStructures;     // A collection of local graphs for a program
 class BUDataStructures;        // A collection of bu graphs for a program
 class TDDataStructures;        // A collection of td graphs for a program
@@ -68,7 +58,6 @@
   }
 };
 
-#if 0
 // BUDataStructures - The analysis that computes the interprocedurally closed
 // data structure graphs for all of the functions in the program.  This pass
 // only performs a "Bottom Up" propogation (hence the name).
@@ -104,6 +93,7 @@
 };
 
 
+#if 0
 // TDDataStructures - Analysis that computes new data structure graphs
 // for each function using the closed graphs for the callers computed
 // by the bottom-up pass.





More information about the llvm-commits mailing list