Silence msvc warning on isl. NFC.
authorMichael Kruse <llvm@meinersbur.de>
Thu, 5 Apr 2018 18:30:44 +0000 (18:30 +0000)
committerMichael Kruse <llvm@meinersbur.de>
Thu, 5 Apr 2018 18:30:44 +0000 (18:30 +0000)
commitae180b95b0a291bdfa93bd1d53b6bba9fefcc772
tree998f1c7250ee7830d5643298003e9e27e238b528
parent665f74414d83118e5682e379d5acadfc86341d25
Silence msvc warning on isl. NFC.

The warning is:

    isl_union_map.c(2041): warning C4221: nonstandard extension used: 'filter_user': cannot be initialized using address of automatic variable 'data'

for the following code (and others)

struct isl_un_op_drop_user_data data = { &isl_set_is_wrapping };
struct isl_un_op_control control = {
.filter = &un_op_filter_drop_user,
.filter_user = &data,
.fn_map = &isl_set_wrapped_domain_map,
};

llvm-svn: 329328
polly/lib/External/CMakeLists.txt