Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.target / i386 / pr19236-1.c
blob73b753843846da7125d426190c088c18ea0e2105
1 /* PR target/19236 */
2 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
3 /* { dg-options "-ffast-math" } */
5 extern float log1pf (float);
6 extern double log1p (double);
8 float testf (float __x) {
9 return log1pf(1.0);
12 double test (double __x) {
13 return log1p(1.0);