blob: 24c88be09449e1b85f51e7f8fc732238b843a572 [file] [log] [blame]
/* PR target/59794 */
/* { dg-do compile { target { ia32 } } } */
/* { dg-options "-O2 -mno-sse" } */
/* { dg-skip-if "no SSE vector" { *-*-mingw* } } */
typedef int __v4si __attribute__ ((__vector_size__ (16)));
extern __v4si x;
__v4si
foo (void)
{ /* { dg-warning "SSE vector return without SSE enabled changes the ABI" } */
return x;
}