diff options
author | Andrew Cagney <cagney@b1.cygnus.com> | 1997-11-21 22:23:26 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1997-11-21 14:23:26 -0800 |
commit | 6cc1f5cbf42076850cbf59b3d92eedfaec261d7d (patch) | |
tree | 3b57b0796dd7f50bc6bf0c4496e79e1fc05cd8e5 /gcc | |
parent | 72eb10386ddf1c698a54b56efa3468a9e7a57639 (diff) | |
download | gcc-6cc1f5cbf42076850cbf59b3d92eedfaec261d7d.zip gcc-6cc1f5cbf42076850cbf59b3d92eedfaec261d7d.tar.gz gcc-6cc1f5cbf42076850cbf59b3d92eedfaec261d7d.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/mips/elf64.h | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 06d0b70..7e336f0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/mips/elf64.h b/gcc/config/mips/elf64.h index 9969475..d38dcb3 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 |