(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr57393-1.c
       1  /* PR middle-end/57393 */
       2  /* { dg-do compile } */
       3  /* { dg-additional-options "-g -ffast-math" } */
       4  
       5  extern void bar (double);
       6  
       7  struct S { int n; };
       8    
       9  void
      10  foo (struct S s, double a, int i, int j, int k)
      11  {
      12    struct S t;
      13    bar (s.n * a * i * j);
      14    t.n = s.n * a * i * k;
      15  }