diff options
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Analysis/CGSCCPassManager.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/Analysis/LoopPassManager.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/IR/PassManager.cpp | 4 | 
3 files changed, 8 insertions, 0 deletions
| diff --git a/llvm/lib/Analysis/CGSCCPassManager.cpp b/llvm/lib/Analysis/CGSCCPassManager.cpp index d5058d6aab1..6326b34d68a 100644 --- a/llvm/lib/Analysis/CGSCCPassManager.cpp +++ b/llvm/lib/Analysis/CGSCCPassManager.cpp @@ -15,6 +15,8 @@ using namespace llvm;  // Explicit instantiations for the core proxy templates.  namespace llvm { +template class PassManager<LazyCallGraph::SCC>; +template class AnalysisManager<LazyCallGraph::SCC>;  template class InnerAnalysisManagerProxy<CGSCCAnalysisManager, Module>;  template class OuterAnalysisManagerProxy<ModuleAnalysisManager,                                           LazyCallGraph::SCC>; diff --git a/llvm/lib/Analysis/LoopPassManager.cpp b/llvm/lib/Analysis/LoopPassManager.cpp index fd77b786262..76210fa89c0 100644 --- a/llvm/lib/Analysis/LoopPassManager.cpp +++ b/llvm/lib/Analysis/LoopPassManager.cpp @@ -13,6 +13,8 @@ using namespace llvm;  // Explicit instantiations for core typedef'ed templates.  namespace llvm { +template class PassManager<Loop>; +template class AnalysisManager<Loop>;  template class InnerAnalysisManagerProxy<LoopAnalysisManager, Function>;  template class OuterAnalysisManagerProxy<FunctionAnalysisManager, Loop>;  } diff --git a/llvm/lib/IR/PassManager.cpp b/llvm/lib/IR/PassManager.cpp index 18e7a73f03e..9d5b4cb0516 100644 --- a/llvm/lib/IR/PassManager.cpp +++ b/llvm/lib/IR/PassManager.cpp @@ -15,6 +15,10 @@ using namespace llvm;  // Explicit template instantiations for core template typedefs.  namespace llvm { +template class PassManager<Module>; +template class PassManager<Function>; +template class AnalysisManager<Module>; +template class AnalysisManager<Function>;  template class InnerAnalysisManagerProxy<FunctionAnalysisManager, Module>;  template class OuterAnalysisManagerProxy<ModuleAnalysisManager, Function>;  } | 

