PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / builtins-15.c
blob6d94c7edc51a7f97562f3ed2c2e8e200936dda99
1 /* Derived from PR optimization/10764 */
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -ffast-math" } */
6 double log(double x);
8 double ndtri(double y0)
10 double x;
12 x = log(y0);
13 x = log(x);
15 return x;