(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
powerpc/
pr93073.c
       1  /* PR target/93073 */
       2  /* { dg-do compile { target powerpc_vsx_ok } } */
       3  /* { dg-options "-mvsx -O1 -ffinite-math-only -fno-trapping-math" } */
       4  
       5  void bar (void);
       6  
       7  void
       8  foo (long double x, double y, double z)
       9  {
      10    for (;;)
      11      {
      12        double a = x > 0.0 ? y : z;
      13        if (a == 0.0)
      14  	bar ();
      15      }
      16  }