Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
gcc.dg
/
builtins-22.c
blob: 916890b409431c8f4159d1287200d641efe25762 [
file
] [
log
] [
blame
]
/* Related to PR optimization/10764 */
/* { dg-do compile } */
/* { dg-options "-O2 -ffast-math" } */
double
exp
(
double
x
);
double
foo
(
double
x
)
{
return
exp
(
exp
(
x
));
}