forked from OSchip/llvm-project
[Refactor] Include explicitly what is used
llvm-svn: 230901
This commit is contained in:
parent
f94d5178a5
commit
f32d651df6
|
@ -14,10 +14,6 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "polly/ScopInfo.h"
|
||||
#include "isl/aff.h"
|
||||
#include "isl/ast.h"
|
||||
#include "isl/ast_build.h"
|
||||
#include "isl/set.h"
|
||||
#include "polly/CodeGen/BlockGenerators.h"
|
||||
#include "polly/CodeGen/CodeGeneration.h"
|
||||
#include "polly/CodeGen/IslExprBuilder.h"
|
||||
|
@ -25,12 +21,22 @@
|
|||
#include "polly/Support/GICHelper.h"
|
||||
#include "polly/Support/SCEVValidator.h"
|
||||
#include "polly/Support/ScopHelper.h"
|
||||
|
||||
#include "llvm/Analysis/LoopInfo.h"
|
||||
#include "llvm/Analysis/RegionInfo.h"
|
||||
#include "llvm/Analysis/ScalarEvolution.h"
|
||||
#include "llvm/Analysis/ScalarEvolutionExpander.h"
|
||||
|
||||
#include "llvm/IR/IntrinsicInst.h"
|
||||
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
|
||||
|
||||
#include "isl/aff.h"
|
||||
#include "isl/ast.h"
|
||||
#include "isl/set.h"
|
||||
#include "isl/ast_build.h"
|
||||
|
||||
#include <deque>
|
||||
|
||||
using namespace llvm;
|
||||
using namespace polly;
|
||||
|
||||
|
|
|
@ -14,7 +14,9 @@
|
|||
#include "polly/CodeGen/Utils.h"
|
||||
#include "polly/CodeGen/IRBuilder.h"
|
||||
#include "polly/ScopInfo.h"
|
||||
|
||||
#include "llvm/Analysis/LoopInfo.h"
|
||||
#include "llvm/Analysis/RegionInfo.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue