Commit 871aed8a authored by jiez's avatar jiez
Browse files

PR driver/47137

	* gcc.c (default_compilers[]): Set combinable field to 0
	for all assembly languages.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168459 138bc75d-0d04-0410-961f-82ee72b054a4
parent 5c7fc120
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.
......
......@@ -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. */
......
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