IEEE854_LONG_DOUBLE_BIAS
*expt = (int) u.ieee.exponent - IEEE854_LONG_DOUBLE_BIAS;
u.ieee.exponent = expt + IEEE854_LONG_DOUBLE_BIAS;
*expt = (int) u.ieee.exponent - IEEE854_LONG_DOUBLE_BIAS;
u.ieee.exponent = expt + IEEE854_LONG_DOUBLE_BIAS;
exponent = -(exponent - IEEE854_LONG_DOUBLE_BIAS); \
exponent = IEEE854_LONG_DOUBLE_BIAS - 1; \
else if (exponent >= IEEE854_LONG_DOUBLE_BIAS) \
exponent -= IEEE854_LONG_DOUBLE_BIAS; \
# define LONG_DOUBLE_DENORM_BIAS (IEEE854_LONG_DOUBLE_BIAS - 1)
else if (exponent >= IEEE854_LONG_DOUBLE_BIAS + 3) \
exponent -= IEEE854_LONG_DOUBLE_BIAS + 3; \
exponent = -(exponent - (IEEE854_LONG_DOUBLE_BIAS + 3)); \