diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-01 22:33:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-01 22:33:50 +0000 |
commit | fccd06fceac144c8c7825d41cefc55f8754a53f8 (patch) | |
tree | 7053e615bc78a4ae8f40384a7c5edd7c205897d3 /lib/Analysis/DataStructure/TopDownClosure.cpp | |
parent | 57b062a8cce79a0eb9bc95772824635ca564b6e6 (diff) |
Checkin some major reworks of data structure analysis. This is not done,
nor does it work very well, but I need to get it checked in before I break
the tree unintentionally.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3996 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/TopDownClosure.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/TopDownClosure.cpp b/lib/Analysis/DataStructure/TopDownClosure.cpp index ca4828d1d4..863dd5ab51 100644 --- a/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -10,9 +10,10 @@ #include "llvm/Analysis/DataStructure.h" #include "llvm/Module.h" #include "llvm/DerivedTypes.h" -#include "Support/StatisticReporter.h" +#include "Support/Statistic.h" using std::map; +#if 0 static RegisterAnalysis<TDDataStructures> Y("tddatastructure", "Top-down Data Structure Analysis Closure"); @@ -223,3 +224,4 @@ DSGraph &TDDataStructures::calculateGraph(Function &F) { return *Graph; } +#endif |