diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-05-07 08:11:54 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2013-05-07 08:11:54 +0000 |
commit | 83628182f7a388f95b39dd8c85f07a70fc5ed513 (patch) | |
tree | 74087cb981975cf94cadc210a5921c0d6ce3c516 /polly/lib/IndVarSimplify.cpp | |
parent | ec4afe668053541b00e93e51cea0e0d5a9351121 (diff) | |
download | bcm5719-llvm-83628182f7a388f95b39dd8c85f07a70fc5ed513.tar.gz bcm5719-llvm-83628182f7a388f95b39dd8c85f07a70fc5ed513.zip |
Sort includes
llvm-svn: 181297
Diffstat (limited to 'polly/lib/IndVarSimplify.cpp')
-rw-r--r-- | polly/lib/IndVarSimplify.cpp | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/polly/lib/IndVarSimplify.cpp b/polly/lib/IndVarSimplify.cpp index 71c79b1d3e8..19265887027 100644 --- a/polly/lib/IndVarSimplify.cpp +++ b/polly/lib/IndVarSimplify.cpp @@ -27,30 +27,29 @@ #define DEBUG_TYPE "indvars" #include "polly/LinkAllPasses.h" - -#include "llvm/Transforms/Scalar.h" +#include "llvm/ADT/DenseMap.h" +#include "llvm/ADT/SmallVector.h" +#include "llvm/ADT/Statistic.h" +#include "llvm/Analysis/Dominators.h" +#include "llvm/Analysis/IVUsers.h" +#include "llvm/Analysis/LoopInfo.h" +#include "llvm/Analysis/LoopPass.h" +#include "llvm/Analysis/ScalarEvolutionExpander.h" #include "llvm/IR/BasicBlock.h" #include "llvm/IR/Constants.h" +#include "llvm/IR/DataLayout.h" #include "llvm/IR/Instructions.h" #include "llvm/IR/IntrinsicInst.h" #include "llvm/IR/LLVMContext.h" #include "llvm/IR/Type.h" -#include "llvm/Analysis/Dominators.h" -#include "llvm/Analysis/IVUsers.h" -#include "llvm/Analysis/ScalarEvolutionExpander.h" -#include "llvm/Analysis/LoopInfo.h" -#include "llvm/Analysis/LoopPass.h" #include "llvm/Support/CFG.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Transforms/Utils/Local.h" +#include "llvm/Transforms/Scalar.h" #include "llvm/Transforms/Utils/BasicBlockUtils.h" +#include "llvm/Transforms/Utils/Local.h" #include "llvm/Transforms/Utils/SimplifyIndVar.h" -#include "llvm/IR/DataLayout.h" -#include "llvm/ADT/DenseMap.h" -#include "llvm/ADT/SmallVector.h" -#include "llvm/ADT/Statistic.h" using namespace llvm; STATISTIC(NumRemoved, "Number of aux indvars removed"); |