(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
vect/
pr84711.c
       1  /* { dg-do compile } */
       2  /* { dg-require-effective-target vect_int } */
       3  /* { dg-options "-O2 -Wno-psabi" } */
       4  /* { dg-additional-options "-msse" { target i?86-*-* x86_64-*-* } } */
       5  
       6  typedef int v4si
       7    __attribute__ ((vector_size (16)));
       8  
       9  int fn1 (v4si p)
      10  {
      11    return p[0];
      12  }
      13