OSDN Git Service

* gcc.dg/tree-ssa/fre-vce-1.c: Cleanup "fre" tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / builtins-22.c
1 /* Related to PR optimization/10764  */
2
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -ffast-math" } */
5
6 double exp(double x);
7
8 double foo(double x)
9 {
10   return exp(exp(x));
11 }
12