(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
vector-subscript-5.c
       1  /* { dg-do compile } */
       2  
       3  typedef int U __attribute__ ((vector_size (16)));
       4  
       5  int
       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  }