Add a delta accidentally omitted from the previous commit:

Define DBL_MANH_SIZE and DBL_MANL_SIZE to be the sizes of the
high and low words of the mantissa in bits, respectively.
This commit is contained in:
das 2004-01-18 08:05:21 +00:00
parent 1c710b8381
commit 9d7d7a8c5d

View File

@ -45,6 +45,9 @@ union IEEEf2bits {
} bits;
};
#define DBL_MANH_SIZE 20
#define DBL_MANL_SIZE 32
union IEEEd2bits {
double d;
struct {