blob: f463e17e1e15e19f0f7277fa6e8038e412b91f5e [file] [log] [blame]
/* 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));
}