From 6cc1f5cbf42076850cbf59b3d92eedfaec261d7d Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Fri, 21 Nov 1997 22:23:26 +0000 Subject: [PATCH] patch from andrew cagney * config/mips/elf64.h (MULTILIB_DEFAULTS): Test for TARGET_ENDIAN_DEFAULT == zero instead of testing for macro definition. From-SVN: r16660 --- gcc/ChangeLog | 6 ++++++ gcc/config/mips/elf64.h | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 06d0b70b808..7e336f00ab1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Fri Nov 21 19:37:40 1997 Andrew Cagney + + * 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 * stmt.c (expand_end_bindings): Allow jump into block with cleanups. diff --git a/gcc/config/mips/elf64.h b/gcc/config/mips/elf64.h index 996947519d9..d38dcb34e53 100644 --- a/gcc/config/mips/elf64.h +++ b/gcc/config/mips/elf64.h @@ -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 -- 2.30.2