rt_gccstream/gcc/testsuite/gcc.dg/builtins-23.c

13 lines
179 B
C

/* Related to PR optimization/10764 */
/* { dg-do compile } */
/* { dg-options "-O2 -ffast-math" } */
double atan(double x);
double foo(double x)
{
return atan(atan(x));
}