patch from andrew cagney
authorAndrew Cagney <cagney@b1.cygnus.com>
Fri, 21 Nov 1997 22:23:26 +0000 (22:23 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Fri, 21 Nov 1997 22:23:26 +0000 (14:23 -0800)
* config/mips/elf64.h (MULTILIB_DEFAULTS): Test for
  TARGET_ENDIAN_DEFAULT == zero instead of testing for macro
  definition.

From-SVN: r16660

gcc/ChangeLog
gcc/config/mips/elf64.h

index 06d0b70b80805cf5193ad3e15c91438de68e7f73..7e336f00ab118f9f736008625c1670736de4862a 100644 (file)
@@ -1,3 +1,9 @@
+Fri Nov 21 19:37:40 1997  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * config/mips/elf64.h (MULTILIB_DEFAULTS): Test for
+       TARGET_ENDIAN_DEFAULT == zero instead of testing for macro
+       definition.
+
 Fri Nov 21 12:49:56 1997  Bruno Haible  <bruno@linuix.mathematik.uni-karlsruhe.de>
 
        * stmt.c (expand_end_bindings): Allow jump into block with cleanups.
index 996947519d99988a77c125466287dc018804a079..d38dcb34e53bad3bfae11451232a086082d5f57c 100644 (file)
@@ -26,10 +26,10 @@ Boston, MA 02111-1307, USA.  */
 #define MIPS_ISA_DEFAULT 3
 
 #ifndef MULTILIB_DEFAULTS
-#ifndef TARGET_ENDIAN_DEFAULT
-#define MULTILIB_DEFAULTS { "EB", "mips3" }
-#else
+#if TARGET_ENDIAN_DEFAULT == 0
 #define MULTILIB_DEFAULTS { "EL", "mips3" }
+#else
+#define MULTILIB_DEFAULTS { "EB", "mips3" }
 #endif
 #endif