2014-03-20 02:41:38 +08:00
|
|
|
//===- PassManager.cpp - Infrastructure for managing & running IR passes --===//
|
2013-11-13 09:12:08 +08: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 10:33:15 +08:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2014-01-11 19:52:05 +08:00
|
|
|
#include "llvm/IR/PassManager.h"
|
2013-11-13 09:12:08 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
2014-01-11 19:52:05 +08:00
|
|
|
|
2016-02-27 18:38:10 +08:00
|
|
|
// Explicit template instantiations for core template typedefs.
|
|
|
|
namespace llvm {
|
|
|
|
template class InnerAnalysisManagerProxy<FunctionAnalysisManager, Module>;
|
|
|
|
template class OuterAnalysisManagerProxy<ModuleAnalysisManager, Function>;
|
2013-11-21 10:11:31 +08:00
|
|
|
}
|