Sign in
gnu
/
gcc
/
8ca74c42ca51abb08f66d1c6f26fcf00d2b829fc
/
.
/
libquadmath
/
math
/
nanq.c
blob: bace4706459e0fc1feebf000380325951c5d3eeb [
file
]
#include
"quadmath-imp.h"
__float128
nanq
(
const
char
*
tagp __attribute__
((
unused
)))
{
// FIXME -- we should use the argument
ieee854_float128 f
;
f
.
ieee
.
exponent
=
0x7fff
;
f
.
ieee
.
mant_high
=
0x1
;
return
f
.
value
;
}