Justin Bogner | eecc3c8 | 2016-02-25 07:23:08 +0000 | [diff] [blame] | 1 | //===- LoopPassManager.cpp - Loop pass management -------------------------===// |
| 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/LoopPassManager.h" |
| 11 | |
| 12 | using namespace llvm; |
| 13 | |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame] | 14 | // Explicit instantiations for core typedef'ed templates. |
| 15 | namespace llvm { |
Chandler Carruth | afcec4c | 2016-02-27 10:45:35 +0000 | [diff] [blame^] | 16 | template class PassManager<Loop>; |
| 17 | template class AnalysisManager<Loop>; |
Chandler Carruth | 2a54094 | 2016-02-27 10:38:10 +0000 | [diff] [blame] | 18 | template class InnerAnalysisManagerProxy<LoopAnalysisManager, Function>; |
| 19 | template class OuterAnalysisManagerProxy<FunctionAnalysisManager, Loop>; |
Justin Bogner | eecc3c8 | 2016-02-25 07:23:08 +0000 | [diff] [blame] | 20 | } |