mirror of git://gcc.gnu.org/git/gcc.git
re PR driver/47137 (gcc incorrectly combines assembly inputs)
PR driver/47137 * gcc.c (default_compilers[]): Set combinable field to 0 for all assembly languages. From-SVN: r168459
This commit is contained in:
parent
2d3c7e4f2d
commit
a0d43bacfc
|
|
@ -1,3 +1,9 @@
|
|||
2011-01-04 Jie Zhang <jie@codesourcery.com>
|
||||
|
||||
PR driver/47137
|
||||
* gcc.c (default_compilers[]): Set combinable field to 0
|
||||
for all assembly languages.
|
||||
|
||||
2011-01-04 Mingjie Xing <mingjie.xing@gmail.com>
|
||||
|
||||
* config/mips/loongson3a.md: New file.
|
||||
|
|
|
|||
10
gcc/gcc.c
10
gcc/gcc.c
|
|
@ -935,11 +935,11 @@ static const struct compiler default_compilers[] =
|
|||
{".i", "@cpp-output", 0, 0, 0},
|
||||
{"@cpp-output",
|
||||
"%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 1, 0},
|
||||
{".s", "@assembler", 0, 1, 0},
|
||||
{".s", "@assembler", 0, 0, 0},
|
||||
{"@assembler",
|
||||
"%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 1, 0},
|
||||
{".sx", "@assembler-with-cpp", 0, 1, 0},
|
||||
{".S", "@assembler-with-cpp", 0, 1, 0},
|
||||
"%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
|
||||
{".sx", "@assembler-with-cpp", 0, 0, 0},
|
||||
{".S", "@assembler-with-cpp", 0, 0, 0},
|
||||
{"@assembler-with-cpp",
|
||||
#ifdef AS_NEEDS_DASH_FOR_PIPED_INPUT
|
||||
"%(trad_capable_cpp) -lang-asm %(cpp_options) -fno-directives-only\
|
||||
|
|
@ -952,7 +952,7 @@ static const struct compiler default_compilers[] =
|
|||
%{!M:%{!MM:%{!E:%{!S:-o %|.s |\n\
|
||||
as %(asm_debug) %(asm_options) %m.s %A }}}}"
|
||||
#endif
|
||||
, 0, 1, 0},
|
||||
, 0, 0, 0},
|
||||
|
||||
#include "specs.h"
|
||||
/* Mark end of table. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue