diff options
author | Tobias Grosser <tobias@grosser.es> | 2015-05-09 09:13:42 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2015-05-09 09:13:42 +0000 |
commit | ba0d09227c66b5e7731d02b24c2f07014587ca0f (patch) | |
tree | 51c90d415bbb17bd262536e632470a6415b38978 /polly/lib/CodeGen/IslAst.cpp | |
parent | e7f512ae36543b83dd65ec04a80bb9f56bf09060 (diff) | |
download | bcm5719-llvm-ba0d09227c66b5e7731d02b24c2f07014587ca0f.tar.gz bcm5719-llvm-ba0d09227c66b5e7731d02b24c2f07014587ca0f.zip |
Sort include directives
Upcoming revisions of isl require us to include header files explicitly, which
have previously been already transitively included. Before we add them, we sort
the existing includes.
Thanks to Chandler for sort_includes.py. A simple, but very convenient script.
llvm-svn: 236930
Diffstat (limited to 'polly/lib/CodeGen/IslAst.cpp')
-rw-r--r-- | polly/lib/CodeGen/IslAst.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/polly/lib/CodeGen/IslAst.cpp b/polly/lib/CodeGen/IslAst.cpp index aa103f65b67..12f90bbf424 100644 --- a/polly/lib/CodeGen/IslAst.cpp +++ b/polly/lib/CodeGen/IslAst.cpp @@ -26,16 +26,14 @@ #include "polly/Options.h" #include "polly/ScopInfo.h" #include "polly/Support/GICHelper.h" - #include "llvm/Analysis/RegionInfo.h" #include "llvm/Support/Debug.h" - -#include "isl/union_map.h" -#include "isl/list.h" +#include "isl/aff.h" #include "isl/ast_build.h" -#include "isl/set.h" +#include "isl/list.h" #include "isl/map.h" -#include "isl/aff.h" +#include "isl/set.h" +#include "isl/union_map.h" #define DEBUG_TYPE "polly-ast" |