(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr70086-1.c
       1  /* PR target/70086 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-mtune=barcelona -mavx512vl -ffloat-store" } */
       4  
       5  float
       6  foo (float a, float b, double c, float d, double e, float f)
       7  {
       8    e -= d;
       9    d *= e;
      10    return e + d;
      11  }