blob: d5058d6aab1d357a0a7189a9fb7fa211f4c0755a [file] [log] [blame]
Chandler Carruth572e3402014-04-21 11:12:00 +00001//===- 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
14using namespace llvm;
15
Chandler Carruth2a540942016-02-27 10:38:10 +000016// Explicit instantiations for the core proxy templates.
17namespace llvm {
18template class InnerAnalysisManagerProxy<CGSCCAnalysisManager, Module>;
19template class OuterAnalysisManagerProxy<ModuleAnalysisManager,
20 LazyCallGraph::SCC>;
21template class InnerAnalysisManagerProxy<FunctionAnalysisManager,
22 LazyCallGraph::SCC>;
23template class OuterAnalysisManagerProxy<CGSCCAnalysisManager, Function>;
Chandler Carruth572e3402014-04-21 11:12:00 +000024}