]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Analysis/CGSCCPassManager.cpp
Upgrade NetBSD tests to 01.11.2017_23.20 snapshot
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Analysis / CGSCCPassManager.cpp
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
12 using namespace llvm;
13
14 // Explicit instantiations for the core proxy templates.
15 namespace llvm {
16 template class PassManager<LazyCallGraph::SCC>;
17 template class AnalysisManager<LazyCallGraph::SCC>;
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>;
24 }