Retro68/gcc/libquadmath/math/nanq.c
Wolfgang Thaller aaf905ce07 add gcc 4.70
2012-03-28 01:13:14 +02:00

12 lines
226 B
C

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