diff options
author | imp <imp@FreeBSD.org> | 2006-09-14 06:36:13 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2006-09-14 06:36:13 +0000 |
commit | 68381de49c05960308bca7070620cc1ac88a0fb8 (patch) | |
tree | 99d48a554722199e021ab248ad402397971dc4d0 | |
parent | 5543d8318673c05f92128384c952e52a95cc0093 (diff) | |
download | FreeBSD-src-68381de49c05960308bca7070620cc1ac88a0fb8.zip FreeBSD-src-68381de49c05960308bca7070620cc1ac88a0fb8.tar.gz |
TARGET_BIG_ENDIAN isn't appropriate here. __ARMEB__ is sufficient and
besides, TARGET_BIG_ENDIAN isn't defined anyway.
-rw-r--r-- | gnu/usr.bin/binutils/libiberty/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/binutils/libiberty/config.h b/gnu/usr.bin/binutils/libiberty/config.h index 190bee5..cde8613 100644 --- a/gnu/usr.bin/binutils/libiberty/config.h +++ b/gnu/usr.bin/binutils/libiberty/config.h @@ -7,7 +7,7 @@ /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */ -#if defined(__sparc64__) || defined(__ARMEB__) || defined(TARGET_BIG_ENDIAN) +#if defined(__sparc64__) || defined(__ARMEB__) #define BYTEORDER 4321 #else #define BYTEORDER 1234 @@ -325,7 +325,7 @@ /* Define if the host machine stores words of multi-word integers in big-endian order. */ -#if defined(__sparc64__) || defined(__ARMEB__) || defined(TARGET_BIG_ENDIAN) +#if defined(__sparc64__) || defined(__ARMEB__) #define HOST_WORDS_BIG_ENDIAN 1 #endif |