[polly] r311494 - [Polly] Satisfy Clang-format for r311489 changes, but it's weird that Clang-format didn't complain about headers order in previous versions (NFC).
Tobias Grosser via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 22 14:51:04 PDT 2017
Thank you, both for this commit and especially the earlier cleanup.
The reason this was not visible before is that clang-format does not
resort across empty lines. You deleted an empty line on the way. ;)
Best,
Tobias
On Tue, Aug 22, 2017, at 23:47, Eugene Zelenko via llvm-commits wrote:
> Author: eugenezelenko
> Date: Tue Aug 22 14:47:17 2017
> New Revision: 311494
>
> URL: http://llvm.org/viewvc/llvm-project?rev=311494&view=rev
> Log:
> [Polly] Satisfy Clang-format for r311489 changes, but it's weird that
> Clang-format didn't complain about headers order in previous versions
> (NFC).
>
> Modified:
> polly/trunk/include/polly/ScopInfo.h
>
> Modified: polly/trunk/include/polly/ScopInfo.h
> URL:
> http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopInfo.h?rev=311494&r1=311493&r2=311494&view=diff
> ==============================================================================
> --- polly/trunk/include/polly/ScopInfo.h (original)
> +++ polly/trunk/include/polly/ScopInfo.h Tue Aug 22 14:47:17 2017
> @@ -18,13 +18,10 @@
> #ifndef POLLY_SCOPINFO_H
> #define POLLY_SCOPINFO_H
>
> +#include "isl-noexceptions.h"
> #include "polly/ScopDetection.h"
> #include "polly/Support/SCEVAffinator.h"
> #include "polly/Support/ScopHelper.h"
> -#include "isl/aff.h"
> -#include "isl/ctx.h"
> -#include "isl/set.h"
> -#include "isl-noexceptions.h"
> #include "llvm/ADT/ArrayRef.h"
> #include "llvm/ADT/DenseMap.h"
> #include "llvm/ADT/DenseSet.h"
> @@ -44,6 +41,9 @@
> #include "llvm/IR/ValueHandle.h"
> #include "llvm/Pass.h"
> #include "llvm/Support/Casting.h"
> +#include "isl/aff.h"
> +#include "isl/ctx.h"
> +#include "isl/set.h"
> #include <algorithm>
> #include <cassert>
> #include <cstddef>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at lists.llvm.org
> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list