* 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.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3115 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-07-27 01:12:15 +00:00
parent 9a740fdf21
commit 97f51a3024
17 changed files with 52 additions and 101 deletions

View File

@ -342,7 +342,7 @@ public:
}
// print - Print out the analysis results...
void print(std::ostream &O, Module *M) const;
void print(std::ostream &O, const Module *M) const;
// If the pass pipeline is done with this pass, we can release our memory...
virtual void releaseMemory();
@ -377,7 +377,7 @@ public:
}
// print - Print out the analysis results...
void print(std::ostream &O, Module *M) const;
void print(std::ostream &O, const Module *M) const;
// If the pass pipeline is done with this pass, we can release our memory...
virtual void releaseMemory();
@ -419,7 +419,7 @@ public:
}
// print - Print out the analysis results...
void print(std::ostream &O, Module *M) const;
void print(std::ostream &O, const Module *M) const;
// If the pass pipeline is done with this pass, we can release our memory...
virtual void releaseMemory();