1 2 3 4 5 6 7 8 9 10 11 12 13
/* { dg-do compile } */ typedef int U __attribute__ ((vector_size (16))); int foo (int i) { register U u #if __SSE2__ asm ("xmm0"); #endif return u[i]; }