aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Analysis/LoopPassManager.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2016-02-27 10:45:35 +0000
committerChandler Carruth <chandlerc@gmail.com>2016-02-27 10:45:35 +0000
commitafcec4c55a5da0e91bca606ccc4e85be8e520f99 (patch)
treee5cf9e8473665d3d6fd8b89124bee9b604c6be76 /llvm/lib/Analysis/LoopPassManager.cpp
parent2a54094d40349e283f8398bc453d7c976af63892 (diff)
downloadllvm-afcec4c55a5da0e91bca606ccc4e85be8e520f99.zip
llvm-afcec4c55a5da0e91bca606ccc4e85be8e520f99.tar.gz
llvm-afcec4c55a5da0e91bca606ccc4e85be8e520f99.tar.bz2
[PM] Provide explicit instantiation declarations and definitions for the
PassManager and AnalysisManager template specializations as well. llvm-svn: 262128
Diffstat (limited to 'llvm/lib/Analysis/LoopPassManager.cpp')
-rw-r--r--llvm/lib/Analysis/LoopPassManager.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/LoopPassManager.cpp b/llvm/lib/Analysis/LoopPassManager.cpp
index fd77b78..76210fa 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>;
}