Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 1 | //===- CGSCCPassManager.cpp - Managing & running CGSCC passes -------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "llvm/Analysis/CGSCCPassManager.h" |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 11 | |
| 12 | using namespace llvm; |
| 13 | |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame] | 14 | // Explicit instantiations for the core proxy templates. |
| 15 | namespace llvm { |
Chandler Carruth | afcec4c | 2016-02-27 10:45:35 +0000 | [diff] [blame] | 16 | template class PassManager<LazyCallGraph::SCC>; |
| 17 | template class AnalysisManager<LazyCallGraph::SCC>; |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame] | 18 | template class InnerAnalysisManagerProxy<CGSCCAnalysisManager, Module>; |
| 19 | template class OuterAnalysisManagerProxy<ModuleAnalysisManager, |
| 20 | LazyCallGraph::SCC>; |
| 21 | template class InnerAnalysisManagerProxy<FunctionAnalysisManager, |
| 22 | LazyCallGraph::SCC>; |
| 23 | template class OuterAnalysisManagerProxy<CGSCCAnalysisManager, Function>; |
Chandler Carruth | 572e340 | 2014-04-21 11:12:00 +0000 | [diff] [blame] | 24 | } |