diff options
Diffstat (limited to 'lib/Analysis/IPA/FindUsedTypes.cpp')
-rw-r--r-- | lib/Analysis/IPA/FindUsedTypes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/IPA/FindUsedTypes.cpp b/lib/Analysis/IPA/FindUsedTypes.cpp index 1139cf3df8..6f12612c4e 100644 --- a/lib/Analysis/IPA/FindUsedTypes.cpp +++ b/lib/Analysis/IPA/FindUsedTypes.cpp @@ -13,7 +13,7 @@ static RegisterAnalysis<FindUsedTypes> X("printusedtypes", "Find Used Types"); -AnalysisID FindUsedTypes::ID(AnalysisID::create<FindUsedTypes>()); +AnalysisID FindUsedTypes::ID = X; // IncorporateType - Incorporate one type and all of its subtypes into the // collection of used types. @@ -68,7 +68,7 @@ bool FindUsedTypes::run(Module &m) { // passed in, then the types are printed symbolically if possible, using the // symbol table from the module. // -void FindUsedTypes::printTypes(std::ostream &o, const Module *M) const { +void FindUsedTypes::print(std::ostream &o, const Module *M) const { o << "Types in use by this module:\n"; if (M) { CachedWriter CW(M, o); |