1 /* PR target/59794 */
2 /* { dg-do compile { target ia32 } } */
3 /* { dg-options "-O2 -mno-sse" } */
4 /* { dg-skip-if "no SSE vector" { *-*-mingw* } } */
5 
6 typedef int __v4si __attribute__ ((__vector_size__ (16)));
7 
8 extern __v4si x;
9 
10 __v4si
foo(void)11 foo (void)
12 { /* { dg-warning "SSE vector return without SSE enabled changes the ABI" } */
13   return x;
14 }
15