Commit 6cc1f5cb by Andrew Cagney Committed by Jim Wilson

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
parent 72eb1038
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> 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. * stmt.c (expand_end_bindings): Allow jump into block with cleanups.
......
...@@ -26,10 +26,10 @@ Boston, MA 02111-1307, USA. */ ...@@ -26,10 +26,10 @@ Boston, MA 02111-1307, USA. */
#define MIPS_ISA_DEFAULT 3 #define MIPS_ISA_DEFAULT 3
#ifndef MULTILIB_DEFAULTS #ifndef MULTILIB_DEFAULTS
#ifndef TARGET_ENDIAN_DEFAULT #if TARGET_ENDIAN_DEFAULT == 0
#define MULTILIB_DEFAULTS { "EB", "mips3" }
#else
#define MULTILIB_DEFAULTS { "EL", "mips3" } #define MULTILIB_DEFAULTS { "EL", "mips3" }
#else
#define MULTILIB_DEFAULTS { "EB", "mips3" }
#endif #endif
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment