diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-08 21:52:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-08 21:52:58 +0000 |
commit | d58243de3fe6abf76ad6cb0c3196ad2ab97e5aa9 (patch) | |
tree | 45070b7db93c4aa5b143ba05e7c40d5c3b7d06c5 /include | |
parent | 8d3b30ab3cd338b332bafd22dcf18666522d3700 (diff) | |
download | external_llvm-d58243de3fe6abf76ad6cb0c3196ad2ab97e5aa9.zip external_llvm-d58243de3fe6abf76ad6cb0c3196ad2ab97e5aa9.tar.gz external_llvm-d58243de3fe6abf76ad6cb0c3196ad2ab97e5aa9.tar.bz2 |
s/Method/Function
Trim #includes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2170 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Assembly/PrintModulePass.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/llvm/Assembly/PrintModulePass.h b/include/llvm/Assembly/PrintModulePass.h index 181ce98..7cbfc61 100644 --- a/include/llvm/Assembly/PrintModulePass.h +++ b/include/llvm/Assembly/PrintModulePass.h @@ -11,7 +11,6 @@ #define LLVM_ASSEMBLY_PRINTMODULEPASS_H #include "llvm/Pass.h" -#include "llvm/Assembly/Writer.h" #include <iostream> class PrintModulePass : public Pass { @@ -32,25 +31,25 @@ public: } }; -class PrintMethodPass : public MethodPass { +class PrintFunctionPass : public MethodPass { std::string Banner; // String to print before each method std::ostream *Out; // ostream to print on bool DeleteStream; // Delete the ostream in our dtor? public: - inline PrintMethodPass(const std::string &B, std::ostream *o = &std::cout, - bool DS = false) + inline PrintFunctionPass(const std::string &B, std::ostream *o = &std::cout, + bool DS = false) : Banner(B), Out(o), DeleteStream(DS) { } - inline ~PrintMethodPass() { + inline ~PrintFunctionPass() { if (DeleteStream) delete Out; } // runOnMethod - This pass just prints a banner followed by the method as // it's processed. // - bool runOnMethod(Method *M) { - (*Out) << Banner << M; + bool runOnMethod(Function *F) { + (*Out) << Banner << F; return false; } }; |