repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr17390.c
blob
9a3d61fcd1110f610d32d7059bf159fd7c51537c
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -ffast-math -mfpmath=387" } */
3
4
double
sgn
(
double
__x
)
5
{
6
return
__x
==
0.0
?
0.0
: (
__x
>
0.0
?
1.0
: -
1.0
);
7
}
8
9
/* { dg-final { scan-assembler-times "fcom|ftst" 1 } } */