1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-options "-msse2 -mgeneral-regs-only" } */
3 
4 typedef int int32x2_t __attribute__ ((__vector_size__ ((8))));
5 
test(int32x2_t a,int32x2_t b)6 int32x2_t test (int32x2_t a, int32x2_t b)
7 { /* { dg-error "SSE register return with SSE disabled" } */
8   return a + b;
9 }
10