(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr19236-1.c
       1  /* PR target/19236 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-ffast-math" } */
       4  
       5  extern float log1pf (float);
       6  extern double log1p (double);  
       7  
       8  float testf (float __x) { 
       9    return log1pf(1.0); 
      10  }
      11  
      12  double test (double __x) { 
      13    return log1p(1.0); 
      14  }