* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr53425-1.c
blob2e89ff7d81db1915f351630e2df816650fe2da29
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 double __v2df __attribute__ ((__vector_size__ (16)));
8 extern __v2df x;
10 extern void bar (__v2df);
11 void
12 foo (void)
14 bar (x); /* { dg-message "warning: SSE vector argument without SSE enabled changes the ABI" } */