From: Andrew Cagney Date: Fri, 21 Nov 1997 22:23:26 +0000 (+0000) Subject: patch from andrew cagney X-Git-Tag: releases/libf2c-0.5.21~519 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6cc1f5cbf42076850cbf59b3d92eedfaec261d7d;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 06d0b70b8080..7e336f00ab11 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 996947519d99..d38dcb34e53b 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