Home | History | Annotate | Download | only in IR
      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 
     14 using namespace llvm;
     15 
     16 // Explicit template instantiations for core template typedefs.
     17 namespace llvm {
     18 template class PassManager<Module>;
     19 template class PassManager<Function>;
     20 template class AnalysisManager<Module>;
     21 template class AnalysisManager<Function>;
     22 template class InnerAnalysisManagerProxy<FunctionAnalysisManager, Module>;
     23 template class OuterAnalysisManagerProxy<ModuleAnalysisManager, Function>;
     24 }
     25