Revert 100204. It broke a bunch of tests and apparently changed what passes are run...
[oota-llvm.git] / include / llvm / Analysis / LoopPass.h
index 6f77d019b691898872adb9af7ab815407628bc5a..10ff1033dcef4ea22cbb5c9def5347b59aed607f 100644 (file)
@@ -31,10 +31,6 @@ public:
   explicit LoopPass(intptr_t pid) : Pass(PT_Loop, pid) {}
   explicit LoopPass(void *pid) : Pass(PT_Loop, pid) {}
 
-  /// getPrinterPass - Get a pass to print the function corresponding
-  /// to a Loop.
-  Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const;
-
   // runOnLoop - This method should be implemented by the subclass to perform
   // whatever action is necessary for the specified Loop.
   virtual bool runOnLoop(Loop *L, LPPassManager &LPM) = 0;