Commit ac282977 by Alexandre Oliva Committed by Alexandre Oliva

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
parent 9b1856d6
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
......
......@@ -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
......
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