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/IslCodeGeneration.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/IslCodeGeneration.cpp')
-rw-r--r-- | polly/lib/CodeGen/IslCodeGeneration.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/polly/lib/CodeGen/IslCodeGeneration.cpp b/polly/lib/CodeGen/IslCodeGeneration.cpp index c92141e6559..7a4ff44e414 100644 --- a/polly/lib/CodeGen/IslCodeGeneration.cpp +++ b/polly/lib/CodeGen/IslCodeGeneration.cpp @@ -27,10 +27,9 @@ #include "polly/ScopInfo.h" #include "polly/Support/ScopHelper.h" #include "polly/TempScopInfo.h" - #include "llvm/IR/Module.h" -#include "llvm/Support/Debug.h" #include "llvm/IR/Verifier.h" +#include "llvm/Support/Debug.h" using namespace polly; using namespace llvm; |