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/Support/SCEVValidator.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/Support/SCEVValidator.cpp')
-rw-r--r-- | polly/lib/Support/SCEVValidator.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/polly/lib/Support/SCEVValidator.cpp b/polly/lib/Support/SCEVValidator.cpp index f1d9443f4b0..b06e8beb7f9 100644 --- a/polly/lib/Support/SCEVValidator.cpp +++ b/polly/lib/Support/SCEVValidator.cpp @@ -1,11 +1,10 @@ #include "polly/Support/SCEVValidator.h" #include "polly/ScopInfo.h" +#include "llvm/Analysis/RegionInfo.h" #include "llvm/Analysis/ScalarEvolution.h" #include "llvm/Analysis/ScalarEvolutionExpressions.h" -#include "llvm/Analysis/RegionInfo.h" #include "llvm/Support/Debug.h" - #include <vector> using namespace llvm; |