diff options
| author | Peter Grehan <grehan@FreeBSD.org> | 2003-12-10 13:04:42 +0000 |
|---|---|---|
| committer | Peter Grehan <grehan@FreeBSD.org> | 2003-12-10 13:04:42 +0000 |
| commit | 448264b8a8e5a4e8367d64035f34a53efaf40a2c (patch) | |
| tree | d2dbf2ba41f7076454dbaef0931aa880f76b778b /lib/libc | |
| parent | 89dff382853849c5402260bf283b10c4b3f1ccb7 (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/powerpc/_fpmath.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/libc/powerpc/_fpmath.h b/lib/libc/powerpc/_fpmath.h index 52129a4263f2..32a3e048700f 100644 --- a/lib/libc/powerpc/_fpmath.h +++ b/lib/libc/powerpc/_fpmath.h @@ -29,14 +29,13 @@ union IEEEl2bits { long double e; struct { - unsigned int sign :1; - unsigned int exp :15; - unsigned long manh :48; - unsigned long manl :64; + unsigned int sign :1; + unsigned int exp :15; + unsigned long long manh :48; + unsigned long long manl :64; } bits; }; -/* XXX does powerpc have a normalization bit? */ #define mask_nbit_l(u) ((void)0) #define LDBL_IMPLICIT_NBIT |
