2014-03-19 19:41:38 +01:00
|
|
|
//===- PassManager.cpp - Infrastructure for managing & running IR passes --===//
|
2013-11-13 02:12:08 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2014-05-16 04:33:15 +02:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2014-01-11 12:52:05 +01:00
|
|
|
#include "llvm/IR/PassManager.h"
|
2013-11-13 02:12:08 +01:00
|
|
|
|
|
|
|
using namespace llvm;
|
2014-01-11 12:52:05 +01:00
|
|
|
|
2016-02-27 11:38:10 +01:00
|
|
|
// Explicit template instantiations for core template typedefs.
|
|
|
|
namespace llvm {
|
2016-02-27 11:45:35 +01:00
|
|
|
template class PassManager<Module>;
|
|
|
|
template class PassManager<Function>;
|
|
|
|
template class AnalysisManager<Module>;
|
|
|
|
template class AnalysisManager<Function>;
|
2016-02-27 11:38:10 +01:00
|
|
|
template class InnerAnalysisManagerProxy<FunctionAnalysisManager, Module>;
|
|
|
|
template class OuterAnalysisManagerProxy<ModuleAnalysisManager, Function>;
|
2013-11-21 03:11:31 +01:00
|
|
|
}
|