(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr68018.c
       1  /* { dg-do compile { target { *-*-linux* && lp64 } } } */
       2  /* { dg-options "-O -mabi=ms -mstackrealign" } */
       3  
       4  typedef float V __attribute__ ((vector_size (16)));
       5  
       6  int fn1 (V * x)
       7  {
       8    V a = *x;
       9    return a[0];
      10  }