Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / libquadmath / math / nanq.c
blobbace4706459e0fc1feebf000380325951c5d3eeb
1 #include "quadmath-imp.h"
3 __float128
4 nanq (const char *tagp __attribute__ ((unused)))
6 // FIXME -- we should use the argument
7 ieee854_float128 f;
8 f.ieee.exponent = 0x7fff;
9 f.ieee.mant_high = 0x1;
10 return f.value;