s/Method/Function
[oota-llvm.git] / include / llvm / Assembly / PrintModulePass.h
index 181ce98227e99d800668f63eba1f6d39b160b097..7cbfc6189948c6c7652d5fcce8830a1a4ab884c2 100644 (file)
@@ -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;
   }
 };