(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr56225.c
       1  /* PR target/56225 */
       2  /* { dg-do compile { target ia32 } } */
       3  /* { dg-options "-O2 -march=pentium3 -mtune=generic" } */
       4  
       5  void bar (int);
       6  
       7  void
       8  foo (int x, int y)
       9  {
      10    __attribute__ ((vector_size (8 * sizeof (short)))) short s0 = { x };
      11    bar ((short) (long) &s0 + y);
      12  }