Retro68/gcc/libquadmath/math/nanq.c
Wolfgang Thaller 6fbf4226da gcc-9.1
2019-06-20 20:10:10 +02:00

12 lines
242 B
C

#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;
}