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
This commit is contained in:
parent
72eb10386d
commit
6cc1f5cbf4
2 changed files with 9 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue