(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr27314.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O1 -ffast-math" } */
       3  
       4  extern double floor (double);
       5  
       6  inline int bar (double x)
       7  {
       8    return (int) floor (x);
       9  }
      10  
      11  int foo (int i)
      12  {
      13    return bar (i);
      14  }