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:
David Schultz 2004-01-18 08:05:21 +00:00
parent a4a37c3010
commit 2ad265067c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=124655

View File

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