From 26c474d05a581d6b78f39bff4d4b7a0b61c1cf92 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Sun, 8 Dec 2002 18:35:47 +0000 Subject: [PATCH] (WORDS_BIG_ENDIAN): Don't define if little endian. --- src/m/mips.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/m/mips.h b/src/m/mips.h index cfa96f61e7b..e2c023686aa 100644 --- a/src/m/mips.h +++ b/src/m/mips.h @@ -31,7 +31,9 @@ NOTE-END */ /* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word is the most significant byte. */ +#if ! (defined (__MIPSEL__) || defined (MIPSEL) || defined (_MIPSEL)) #define WORDS_BIG_ENDIAN +#endif /* Define NO_ARG_ARRAY if you cannot take the address of the first of a * group of arguments and treat it as an array of the arguments. */ -- 2.39.5