repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
builtins-22.c
blob
916890b409431c8f4159d1287200d641efe25762
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