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/BottomUpClosure.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/BottomUpClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index 2ab97442d1..c3d19d4bc2 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -10,10 +10,12 @@ #include "llvm/Analysis/DataStructure.h" #include "llvm/Module.h" #include "llvm/DerivedTypes.h" -#include "Support/StatisticReporter.h" +#include "Support/Statistic.h" #include <set> using std::map; +#if 0 + static RegisterAnalysis<BUDataStructures> X("budatastructure", "Bottom-up Data Structure Analysis Closure"); @@ -240,3 +242,4 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) { return *Graph; } +#endif |