Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
gcc.dg
/
builtins-23.c
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
));
}