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