diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | sysdeps/ia64/fpu/sfp-machine.h | 10 |
2 files changed, 8 insertions, 10 deletions
@@ -1,3 +1,11 @@ +2018-11-12 Joseph Myers <joseph@codesourcery.com> + + * sysdeps/ia64/fpu/sfp-machine.h (__LITTLE_ENDIAN): Remove. + (__BIG_ENDIAN): Likewise. + (__BYTE_ORDER): Likewise. + (strong_alias): Likewise. + (_strong_alias): Likewise. + 2018-11-12 Florian Weimer <fweimer@redhat.com> * malloc/malloc.c (unlink_chunk): Turn the unlink macro into this diff --git a/sysdeps/ia64/fpu/sfp-machine.h b/sysdeps/ia64/fpu/sfp-machine.h index 45e844d3da..ec79e67b3b 100644 --- a/sysdeps/ia64/fpu/sfp-machine.h +++ b/sysdeps/ia64/fpu/sfp-machine.h @@ -88,13 +88,3 @@ void __sfp_handle_exceptions (int); } while (0) #define FP_ROUNDMODE (_fcw & FP_RND_MASK) - -#define __LITTLE_ENDIAN 1234 -#define __BIG_ENDIAN 4321 - -#define __BYTE_ORDER __LITTLE_ENDIAN - -/* Define ALIASNAME as a strong alias for NAME. */ -#define strong_alias(name, aliasname) _strong_alias(name, aliasname) -#define _strong_alias(name, aliasname) \ - extern __typeof (name) aliasname __attribute__ ((alias (#name))); |