summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libc/powerpc/_fpmath.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/libc/powerpc/_fpmath.h b/lib/libc/powerpc/_fpmath.h
index 52129a4..32a3e04 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
OpenPOWER on IntegriCloud