summaryrefslogtreecommitdiffstats
path: root/libm/arm64/_fpmath.h
diff options
context:
space:
mode:
Diffstat (limited to 'libm/arm64/_fpmath.h')
-rw-r--r--libm/arm64/_fpmath.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/libm/arm64/_fpmath.h b/libm/arm64/_fpmath.h
index 9f46640..560d53a 100644
--- a/libm/arm64/_fpmath.h
+++ b/libm/arm64/_fpmath.h
@@ -33,28 +33,15 @@
union IEEEl2bits {
long double e;
struct {
-#ifndef __AARCH64EB__
unsigned long manl :64;
unsigned long manh :48;
unsigned int exp :15;
unsigned int sign :1;
-#else
- unsigned int sign :1;
- unsigned int exp :15;
- unsigned long manh :48;
- unsigned long manl :64;
-#endif
} bits;
struct {
-#ifndef __AARCH64EB__
unsigned long manl :64;
unsigned long manh :48;
unsigned int expsign :16;
-#else
- unsigned int expsign :16;
- unsigned long manh :48;
- unsigned long manl :64;
-#endif
} xbits;
};