1 /* { dg-do compile } */
2 /* { dg-options "-msse2 -mgeneral-regs-only" } */
3 
4 typedef int int32x4_t __attribute__ ((__vector_size__ ((16))));
5 extern int32x4_t c;
6 
7 void
test(int32x4_t a,int32x4_t b)8 test (int32x4_t a, int32x4_t b) /* { dg-warning "SSE vector argument without SSE enabled" } */
9 {
10   c = a + b;
11 }
12