diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-27 01:12:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-27 01:12:15 +0000 |
commit | 96a0dfa33e8469ef18866d1d89708af18929e38e (patch) | |
tree | d5a653ca0e77dbb4285ac095171397badafe1214 /llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | 5768f01926dd07c0a863fa03035224e14d9b4508 (diff) | |
download | bcm5719-llvm-96a0dfa33e8469ef18866d1d89708af18929e38e.tar.gz bcm5719-llvm-96a0dfa33e8469ef18866d1d89708af18929e38e.zip |
* Standardize how analysis results/passes as printed with the print() virtual
methods
* Eliminate AnalysisID: Now it is just a typedef for const PassInfo*
* Simplify how AnalysisID's are initialized
* Eliminate Analysis/Writer.cpp/.h: incorporate printing functionality into
the analyses themselves.
llvm-svn: 3115
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp index 62206d9b0e9..c8b45b50ccd 100644 --- a/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -15,7 +15,7 @@ using std::map; static RegisterAnalysis<BUDataStructures> X("budatastructure", "Bottom-Up Data Structure Analysis Closure"); -AnalysisID BUDataStructures::ID(AnalysisID::create<BUDataStructures>()); +AnalysisID BUDataStructures::ID = X; // releaseMemory - If the pass pipeline is done with this pass, we can release // our memory... here... |