aboutsummaryrefslogtreecommitdiff
path: root/llvm/include/llvm/IR/LegacyPassManagers.h
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/include/llvm/IR/LegacyPassManagers.h')
-rw-r--r--llvm/include/llvm/IR/LegacyPassManagers.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/include/llvm/IR/LegacyPassManagers.h b/llvm/include/llvm/IR/LegacyPassManagers.h
index 0bcb408d4929..311a407f1a19 100644
--- a/llvm/include/llvm/IR/LegacyPassManagers.h
+++ b/llvm/include/llvm/IR/LegacyPassManagers.h
@@ -90,7 +90,6 @@ template <typename T> class ArrayRef;
class Module;
class StringRef;
class Value;
-class Timer;
class PMDataManager;
// enums for debugging strings
@@ -460,8 +459,7 @@ private:
class FPPassManager : public ModulePass, public PMDataManager {
public:
static char ID;
- explicit FPPassManager()
- : ModulePass(ID), PMDataManager() { }
+ explicit FPPassManager() : ModulePass(ID) {}
/// run - Execute all of the passes scheduled for execution. Keep track of
/// whether any of the passes modifies the module, and if so, return true.