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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
builtins-23.c
blob
f463e17e1e15e19f0f7277fa6e8038e412b91f5e
1
/* Related to PR optimization/10764 */
2
3
/* { dg-do compile } */
4
/* { dg-options "-O2 -ffast-math" } */
5
6
double
atan
(
double
x
);
7
8
double
foo
(
double
x
)
9
{
10
return
atan
(
atan
(
x
));
11
}
12