1//===- PassManager.cpp - Infrastructure for managing & running IR 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/IR/PassManager.h"
11#include "llvm/ADT/STLExtras.h"
12#include "llvm/IR/LLVMContext.h"
13
14using namespace llvm;
15
16// Explicit template instantiations for core template typedefs.
17namespace llvm {
18template class PassManager<Module>;
19template class PassManager<Function>;
20template class AnalysisManager<Module>;
21template class AnalysisManager<Function>;
22template class InnerAnalysisManagerProxy<FunctionAnalysisManager, Module>;
23template class OuterAnalysisManagerProxy<ModuleAnalysisManager, Function>;
24}
25