blob: f463e17e1e15e19f0f7277fa6e8038e412b91f5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* 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));
}
|