blob: c6d20f2ba116351d78e62dfa38d07e7b02d1bea8 [file] [log] [blame]
/* { dg-do compile { target ia32 } } */
/* { dg-options "-msse2 -mgeneral-regs-only" } */
typedef int int32x4_t __attribute__ ((__vector_size__ ((16))));
int32x4_t
test (int32x4_t a, int32x4_t b) /* { dg-warning "SSE vector argument without SSE enabled" } */
{ /* { dg-warning "SSE vector return without SSE enabled" } */
return a + b;
}