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" |
| 11 | #include "llvm/Support/CommandLine.h" |
| 12 | #include "llvm/Support/Debug.h" |
| 13 | |
| 14 | using namespace llvm; |
| 15 | |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame^] | 16 | // Explicit instantiations for the core proxy templates. |
| 17 | namespace llvm { |
| 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 | } |