mips.h (ENDIAN_SPEC): Output the endianness flag if the -me[lb] option is given.

* config/mips/mips.h (ENDIAN_SPEC): Output the endianness flag if
the -me[lb] option is given.  Don't output the default flag
twice.

From-SVN: r49392
This commit is contained in:
Alexandre Oliva 2002-02-01 10:27:36 +00:00 committed by Alexandre Oliva
parent 9b1856d6c8
commit ac282977f6
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2002-02-01 Alexandre Oliva <aoliva@redhat.com>
* config/mips/mips.h (ENDIAN_SPEC): Output the endianness flag if
the -me[lb] option is given. Don't output the default flag
twice.
2002-01-31 Zack Weinberg <zack@codesourcery.com>
* c-lex.c (yyparse): Call debug_hooks->start_source_file for

View File

@ -577,9 +577,9 @@ extern void sbss_section PARAMS ((void));
#ifndef ENDIAN_SPEC
#if TARGET_ENDIAN_DEFAULT == 0
#define ENDIAN_SPEC "%{!EB:%{!meb:-EL}} %{EL} %{EB}"
#define ENDIAN_SPEC "%{!EB:%{!meb:-EL}} %{EB|meb:-EB}"
#else
#define ENDIAN_SPEC "%{!EL:%{!mel:-EB}} %{EB} %{EL}"
#define ENDIAN_SPEC "%{!EL:%{!mel:-EB}} %{EL|mel:-EL}"
#endif
#endif