revert r99862 which is causing FNT failures.
[oota-llvm.git] / include / llvm / PassManagers.h
index ed1e80eae69cb477342722a887835734eef4ae28..d5685c664c23e79b2b9115f726984f7ca095b095 100644 (file)
@@ -413,6 +413,7 @@ private:
 /// It batches all function passes and basic block pass managers together and 
 /// sequence them to process one function at a time before processing next 
 /// function.
+
 class FPPassManager : public ModulePass, public PMDataManager {
 public:
   static char ID;
@@ -461,7 +462,8 @@ public:
   }
 };
 
-Timer *getPassTimer(Pass *);
+extern Timer *StartPassTimer(Pass *);
+extern void StopPassTimer(Pass *, Timer *);
 
 }