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
PR middle-end/27945
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr18520-1.c
blob
872d3a94620df0ad78d8534bdc6b15d7ea9b3429
1
/* PR middle-end/18520 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -ffast-math" } */
4
5
extern
int
isnan
(
double
__value
)
__attribute__
((
__const__
));
6
7
int
gsl_isnan
(
const double
x
)
8
{
9
return
isnan
(
x
);
10
}
11