diff options
| author | Marcel Moolenaar <marcel@FreeBSD.org> | 2008-12-23 22:20:59 +0000 |
|---|---|---|
| committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2008-12-23 22:20:59 +0000 |
| commit | 74aed9855d18f91a1a2b22bd649f278bc4634acc (patch) | |
| tree | e53e0cc50653c1177127b792f2618edc51c491fd /lib/libc/include | |
| parent | 4769218f4b25ece6809dc400637d2c3dcc04d313 (diff) | |
Notes
Diffstat (limited to 'lib/libc/include')
| -rw-r--r-- | lib/libc/include/fpmath.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/libc/include/fpmath.h b/lib/libc/include/fpmath.h index d33cfdc14817e..697d5828bfc54 100644 --- a/lib/libc/include/fpmath.h +++ b/lib/libc/include/fpmath.h @@ -30,6 +30,10 @@ #include <sys/endian.h> #include "_fpmath.h" +#ifndef _IEEE_WORD_ORDER +#define _IEEE_WORD_ORDER _BYTE_ORDER +#endif + union IEEEf2bits { float f; struct { @@ -52,10 +56,15 @@ union IEEEd2bits { double d; struct { #if _BYTE_ORDER == _LITTLE_ENDIAN +#if _IEEE_WORD_ORDER == _LITTLE_ENDIAN unsigned int manl :32; +#endif unsigned int manh :20; unsigned int exp :11; unsigned int sign :1; +#if _IEEE_WORD_ORDER == _BIG_ENDIAN + unsigned int manl :32; +#endif #else /* _BIG_ENDIAN */ unsigned int sign :1; unsigned int exp :11; |
