blob: 8a6558793c46edbbbc0eea3a9c99d6ab7d6cfba3 [file] [log] [blame]
/* PR target/60205 */
/* { dg-options "-O2 -mno-avx512f" } */
/* { dg-skip-if "no AVX512F vector" { *-*-mingw* } } */
typedef int __v16si __attribute__ ((__vector_size__ (64)));
extern __v16si x;
__v16si
foo (void)
{ /* { dg-warning "AVX512F vector return without AVX512F enabled changes the ABI" } */
return x;
}