* g++.dg/other/i386-2.C (dg-options): Add -mavx512pf.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr53425-2.c
blob97523f35bb53c097a0e92e0b59456ade660bdee1
1 /* PR target/53425 */
2 /* { dg-do compile { target { ! { ia32 } } } } */
3 /* { dg-options "-O2 -mno-sse" } */
4 /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
6 typedef float __v2sf __attribute__ ((__vector_size__ (8)));
8 extern __v2sf x;
10 extern void bar (__v2sf);
11 void
12 foo (void)
14 bar (x); /* { dg-message "warning: SSE vector argument without SSE enabled changes the ABI" } */