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 lto/83954
[official-gcc.git]
/
libquadmath
/
math
/
signbitq.c
blob
2ddab8667a28e26ba393df6befca5714226c9353
1
#include
"quadmath-imp.h"
2
3
4
int
5
signbitq
(
const
__float128 x
)
6
{
7
ieee854_float128 f
;
8
f
.
value
=
x
;
9
return
f
.
ieee
.
negative
;
10
}