Sign in
gnu
/
gcc
/
70ee703c479081ac2ea67eb67041551216e66783
/
.
/
libquadmath
/
math
/
nanq.c
blob: 52786d906c5f15acaf32759dfc2c88c96b523390 [
file
] [
log
] [
blame
]
#include
"quadmath-imp.h"
__float128
nanq
(
const
char
*
tagp __attribute__
((
unused
)))
{
// FIXME -- we should use the argument
ieee854_float128 f
=
{
0
};
f
.
ieee_nan
.
exponent
=
0x7fff
;
f
.
ieee_nan
.
quiet_nan
=
0x1
;
return
f
.
value
;
}