Revert 100204. It broke a bunch of tests and apparently changed what passes are run...
[oota-llvm.git] / include / llvm / CodeGen / MachineFunctionPass.h
index 1a2b12972aba6efeb52155a17cba709788bb7b64..bac110316d4f306e2034314cb8b093bb1f8d4058 100644 (file)
@@ -34,9 +34,6 @@ protected:
   explicit MachineFunctionPass(intptr_t ID) : FunctionPass(ID) {}
   explicit MachineFunctionPass(void *ID) : FunctionPass(ID) {}
 
-  /// createPrinterPass - Get a machine function printer pass.
-  Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const;
-
   /// runOnMachineFunction - This method must be overloaded to perform the
   /// desired machine code transformation or analysis.
   ///