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 
testf(float __x)8 float testf (float __x) {
9   return log1pf(1.0);
10 }
11 
test(double __x)12 double test (double __x) {
13   return log1p(1.0);
14 }
15