(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr88828-4a.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -msse -mno-sse4" } */
       3  /* { dg-final { scan-assembler "movss" } } */
       4  /* { dg-final { scan-assembler-times "shufps" 1 } } */
       5  /* { dg-final { scan-assembler-not "movaps" } } */
       6  /* { dg-final { scan-assembler-not "movlhps" } } */
       7  /* { dg-final { scan-assembler-not "unpcklps" } } */
       8  
       9  typedef float __v4sf __attribute__ ((__vector_size__ (16)));
      10  
      11  __attribute__((noinline, noclone))
      12  __v4sf
      13  foo (__v4sf x, float f)
      14  {
      15    __v4sf y = { x[0], x[2], x[3], x[1] };
      16    y[0] = f;
      17    return y;
      18  }