aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/llvm/PassManagers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/PassManagers.h b/include/llvm/PassManagers.h
index 44c932a..eaa6f44 100644
--- a/include/llvm/PassManagers.h
+++ b/include/llvm/PassManagers.h
@@ -150,7 +150,7 @@ public:
return ImmutablePasses;
}
- void addPassManager(Pass *Manager) {
+ void addPassManager(PMDataManager *Manager) {
PassManagers.push_back(Manager);
}
@@ -172,7 +172,7 @@ public:
protected:
/// Collection of pass managers
- std::vector<Pass *> PassManagers;
+ std::vector<PMDataManager *> PassManagers;
private: