[polly] r293753 - Fix format after recent clang-format change.

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 1 22:40:51 PST 2017


On Wed, Feb 1, 2017, at 10:31 AM, Daniel Jasper via llvm-commits wrote:
> Author: djasper
> Date: Wed Feb  1 03:31:42 2017
> New Revision: 293753
> 
> URL: http://llvm.org/viewvc/llvm-project?rev=293753&view=rev
> Log:
> Fix format after recent clang-format change.

Thank you Daniel for updating Polly. This is very helpful and indeed
very much appreciated.

I am not sure if later formatting changes affected Polly again, but I
had to add a couple of more formatting changes in 293756.

In case you are not aware, we have two formatting specific make commands
in Polly.

'make polly-check-format'

'make polly-update-format'

Especially the latter should be very useful when updating the formatting
in Polly. You can also use them to check the impact of formatting
changes on Polly early on.

Best,
Tobias

> Modified:
>     polly/trunk/lib/Analysis/DependenceInfo.cpp
> 
> Modified: polly/trunk/lib/Analysis/DependenceInfo.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/DependenceInfo.cpp?rev=293753&r1=293752&r2=293753&view=diff
> ==============================================================================
> --- polly/trunk/lib/Analysis/DependenceInfo.cpp (original)
> +++ polly/trunk/lib/Analysis/DependenceInfo.cpp Wed Feb  1 03:31:42 2017
> @@ -276,9 +276,8 @@ void Dependences::addPrivatizationDepend
>      *PrivMap = isl_union_map_apply_range(isl_union_map_copy(*Map),
>                                           isl_union_map_copy(TC_RED));
>      *PrivMap = isl_union_map_union(
> -        *PrivMap,
> -        isl_union_map_apply_range(isl_union_map_copy(TC_RED),
> -                                  isl_union_map_copy(*Map)));
> +        *PrivMap, isl_union_map_apply_range(isl_union_map_copy(TC_RED),
> +                                            isl_union_map_copy(*Map)));
>  
>      *Map = isl_union_map_union(*Map, *PrivMap);
>    }
> 
> 
> _______________________________________________
> 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