Commit e8638df0 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

Callers gcc-toplev:

Changes add TABs on either or both sides, covering start of line,
up to any operand for all .*ASM.*_OP definitions.

From-SVN: r36614
parent 93de6f51
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Changes below marked "here" add TABs on either or both sides, Changes below marked "here" add TABs on either or both sides,
covering start of line, up to any operand for all noted .*ASM.*_OP covering start of line, up to any operand for all noted .*ASM.*_OP
definitions. definitions. All callers changed.
* crtstuff.c (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Explain * crtstuff.c (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Explain
why these defaults don't have leading spacing. why these defaults don't have leading spacing.
* dbxout.c (ASM_STABS_OP, ASM_STABN_OP): Here. * dbxout.c (ASM_STABS_OP, ASM_STABN_OP): Here.
......
...@@ -348,7 +348,7 @@ dbxout_function_end () ...@@ -348,7 +348,7 @@ dbxout_function_end ()
/* By convention, GCC will mark the end of a function with an N_FUN /* By convention, GCC will mark the end of a function with an N_FUN
symbol and an empty string. */ symbol and an empty string. */
fprintf (asmfile, "%s \"\",%d,0,0,", ASM_STABS_OP, N_FUN); fprintf (asmfile, "%s\"\",%d,0,0,", ASM_STABS_OP, N_FUN);
assemble_name (asmfile, lscope_label_name); assemble_name (asmfile, lscope_label_name);
fputc ('-', asmfile); fputc ('-', asmfile);
assemble_name (asmfile, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0)); assemble_name (asmfile, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));
...@@ -394,7 +394,7 @@ dbxout_init (asm_file, input_file_name, syms) ...@@ -394,7 +394,7 @@ dbxout_init (asm_file, input_file_name, syms)
#ifdef DBX_OUTPUT_MAIN_SOURCE_DIRECTORY #ifdef DBX_OUTPUT_MAIN_SOURCE_DIRECTORY
DBX_OUTPUT_MAIN_SOURCE_DIRECTORY (asmfile, cwd); DBX_OUTPUT_MAIN_SOURCE_DIRECTORY (asmfile, cwd);
#else /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */ #else /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */
fprintf (asmfile, "%s ", ASM_STABS_OP); fprintf (asmfile, "%s", ASM_STABS_OP);
output_quoted_string (asmfile, cwd); output_quoted_string (asmfile, cwd);
fprintf (asmfile, ",%d,0,0,%s\n", N_SO, &ltext_label_name[1]); fprintf (asmfile, ",%d,0,0,%s\n", N_SO, &ltext_label_name[1]);
#endif /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */ #endif /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */
...@@ -409,7 +409,7 @@ dbxout_init (asm_file, input_file_name, syms) ...@@ -409,7 +409,7 @@ dbxout_init (asm_file, input_file_name, syms)
/* We include outputting `Ltext:' here, /* We include outputting `Ltext:' here,
because that gives you a way to override it. */ because that gives you a way to override it. */
/* Used to put `Ltext:' before the reference, but that loses on sun 4. */ /* Used to put `Ltext:' before the reference, but that loses on sun 4. */
fprintf (asmfile, "%s ", ASM_STABS_OP); fprintf (asmfile, "%s", ASM_STABS_OP);
output_quoted_string (asmfile, input_file_name); output_quoted_string (asmfile, input_file_name);
fprintf (asmfile, ",%d,0,0,%s\n", fprintf (asmfile, ",%d,0,0,%s\n",
N_SO, &ltext_label_name[1]); N_SO, &ltext_label_name[1]);
...@@ -493,7 +493,7 @@ dbxout_start_new_source_file (filename) ...@@ -493,7 +493,7 @@ dbxout_start_new_source_file (filename)
n->file_number = next_file_number++; n->file_number = next_file_number++;
n->next_type_number = 1; n->next_type_number = 1;
current_file = n; current_file = n;
fprintf (asmfile, "%s ", ASM_STABS_OP); fprintf (asmfile, "%s", ASM_STABS_OP);
output_quoted_string (asmfile, filename); output_quoted_string (asmfile, filename);
fprintf (asmfile, ",%d,0,0,0\n", N_BINCL); fprintf (asmfile, ",%d,0,0,0\n", N_BINCL);
#endif #endif
...@@ -507,7 +507,7 @@ dbxout_resume_previous_source_file () ...@@ -507,7 +507,7 @@ dbxout_resume_previous_source_file ()
#ifdef DBX_USE_BINCL #ifdef DBX_USE_BINCL
struct dbx_file *next; struct dbx_file *next;
fprintf (asmfile, "%s %d,0,0,0\n", ASM_STABN_OP, N_EINCL); fprintf (asmfile, "%s%d,0,0,0\n", ASM_STABN_OP, N_EINCL);
next = current_file->next; next = current_file->next;
free (current_file); free (current_file);
current_file = next; current_file = next;
...@@ -530,7 +530,7 @@ dbxout_source_file (file, filename) ...@@ -530,7 +530,7 @@ dbxout_source_file (file, filename)
#else #else
ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext", ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext",
source_label_number); source_label_number);
fprintf (file, "%s ", ASM_STABS_OP); fprintf (file, "%s", ASM_STABS_OP);
output_quoted_string (file, filename); output_quoted_string (file, filename);
fprintf (file, ",%d,0,0,%s\n", N_SOL, &ltext_label_name[1]); fprintf (file, ",%d,0,0,%s\n", N_SOL, &ltext_label_name[1]);
if (current_function_decl != NULL_TREE if (current_function_decl != NULL_TREE
...@@ -559,7 +559,7 @@ dbxout_source_line (file, filename, lineno) ...@@ -559,7 +559,7 @@ dbxout_source_line (file, filename, lineno)
#ifdef ASM_OUTPUT_SOURCE_LINE #ifdef ASM_OUTPUT_SOURCE_LINE
ASM_OUTPUT_SOURCE_LINE (file, lineno); ASM_OUTPUT_SOURCE_LINE (file, lineno);
#else #else
fprintf (file, "\t%s %d,0,%d\n", ASM_STABD_OP, N_SLINE, lineno); fprintf (file, "\t%s%d,0,%d\n", ASM_STABD_OP, N_SLINE, lineno);
#endif #endif
} }
...@@ -609,7 +609,7 @@ dbxout_continue () ...@@ -609,7 +609,7 @@ dbxout_continue ()
fprintf (asmfile, "\\\\"); fprintf (asmfile, "\\\\");
#endif #endif
dbxout_finish_symbol (NULL_TREE); dbxout_finish_symbol (NULL_TREE);
fprintf (asmfile, "%s \"", ASM_STABS_OP); fprintf (asmfile, "%s\"", ASM_STABS_OP);
current_sym_nchars = 0; current_sym_nchars = 0;
} }
#endif /* DBX_CONTIN_LENGTH > 0 */ #endif /* DBX_CONTIN_LENGTH > 0 */
...@@ -1754,7 +1754,7 @@ dbxout_symbol (decl, local) ...@@ -1754,7 +1754,7 @@ dbxout_symbol (decl, local)
break; break;
FORCE_TEXT; FORCE_TEXT;
fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:%c", ASM_STABS_OP,
IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)), IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)),
TREE_PUBLIC (decl) ? 'F' : 'f'); TREE_PUBLIC (decl) ? 'F' : 'f');
result = 1; result = 1;
...@@ -1830,14 +1830,14 @@ dbxout_symbol (decl, local) ...@@ -1830,14 +1830,14 @@ dbxout_symbol (decl, local)
current_sym_addr = 0; current_sym_addr = 0;
current_sym_nchars = 2 + IDENTIFIER_LENGTH (name); current_sym_nchars = 2 + IDENTIFIER_LENGTH (name);
fprintf (asmfile, "%s \"%s:T", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:T", ASM_STABS_OP,
IDENTIFIER_POINTER (name)); IDENTIFIER_POINTER (name));
dbxout_type (type, 1, 0); dbxout_type (type, 1, 0);
dbxout_finish_symbol (NULL_TREE); dbxout_finish_symbol (NULL_TREE);
} }
/* Output typedef name. */ /* Output typedef name. */
fprintf (asmfile, "%s \"%s:", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:", ASM_STABS_OP,
IDENTIFIER_POINTER (DECL_NAME (decl))); IDENTIFIER_POINTER (DECL_NAME (decl)));
/* Short cut way to output a tag also. */ /* Short cut way to output a tag also. */
...@@ -1891,7 +1891,7 @@ dbxout_symbol (decl, local) ...@@ -1891,7 +1891,7 @@ dbxout_symbol (decl, local)
current_sym_addr = 0; current_sym_addr = 0;
current_sym_nchars = 2 + IDENTIFIER_LENGTH (name); current_sym_nchars = 2 + IDENTIFIER_LENGTH (name);
fprintf (asmfile, "%s \"%s:T", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:T", ASM_STABS_OP,
IDENTIFIER_POINTER (name)); IDENTIFIER_POINTER (name));
dbxout_type (type, 1, 0); dbxout_type (type, 1, 0);
dbxout_finish_symbol (NULL_TREE); dbxout_finish_symbol (NULL_TREE);
...@@ -1910,7 +1910,7 @@ dbxout_symbol (decl, local) ...@@ -1910,7 +1910,7 @@ dbxout_symbol (decl, local)
/* Some debuggers fail when given NULL names, so give this a /* Some debuggers fail when given NULL names, so give this a
harmless name of ` '. */ harmless name of ` '. */
fprintf (asmfile, "%s \" :T", ASM_STABS_OP); fprintf (asmfile, "%s\" :T", ASM_STABS_OP);
dbxout_type (type, 1, 0); dbxout_type (type, 1, 0);
dbxout_finish_symbol (NULL_TREE); dbxout_finish_symbol (NULL_TREE);
} }
...@@ -1956,7 +1956,7 @@ dbxout_symbol (decl, local) ...@@ -1956,7 +1956,7 @@ dbxout_symbol (decl, local)
#ifdef DBX_OUTPUT_CONSTANT_SYMBOL #ifdef DBX_OUTPUT_CONSTANT_SYMBOL
DBX_OUTPUT_CONSTANT_SYMBOL (asmfile, name, ival); DBX_OUTPUT_CONSTANT_SYMBOL (asmfile, name, ival);
#else #else
fprintf (asmfile, "%s \"%s:c=i", ASM_STABS_OP, name); fprintf (asmfile, "%s\"%s:c=i", ASM_STABS_OP, name);
fprintf (asmfile, HOST_WIDE_INT_PRINT_DEC, ival); fprintf (asmfile, HOST_WIDE_INT_PRINT_DEC, ival);
fprintf (asmfile, "\",0x%x,0,0,0\n", N_LSYM); fprintf (asmfile, "\",0x%x,0,0,0\n", N_LSYM);
...@@ -2230,7 +2230,7 @@ dbxout_symbol_name (decl, suffix, letter) ...@@ -2230,7 +2230,7 @@ dbxout_symbol_name (decl, suffix, letter)
if (name == 0) if (name == 0)
name = "(anon)"; name = "(anon)";
fprintf (asmfile, "%s \"%s%s:", ASM_STABS_OP, name, fprintf (asmfile, "%s\"%s%s:", ASM_STABS_OP, name,
(suffix ? suffix : "")); (suffix ? suffix : ""));
if (letter) putc (letter, asmfile); if (letter) putc (letter, asmfile);
...@@ -2339,14 +2339,14 @@ dbxout_parms (parms) ...@@ -2339,14 +2339,14 @@ dbxout_parms (parms)
{ {
current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms)); current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:%c", ASM_STABS_OP,
IDENTIFIER_POINTER (DECL_NAME (parms)), IDENTIFIER_POINTER (DECL_NAME (parms)),
DBX_MEMPARM_STABS_LETTER); DBX_MEMPARM_STABS_LETTER);
} }
else else
{ {
current_sym_nchars = 8; current_sym_nchars = 8;
fprintf (asmfile, "%s \"(anon):%c", ASM_STABS_OP, fprintf (asmfile, "%s\"(anon):%c", ASM_STABS_OP,
DBX_MEMPARM_STABS_LETTER); DBX_MEMPARM_STABS_LETTER);
} }
...@@ -2404,14 +2404,14 @@ dbxout_parms (parms) ...@@ -2404,14 +2404,14 @@ dbxout_parms (parms)
if (DECL_NAME (parms)) if (DECL_NAME (parms))
{ {
current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms)); current_sym_nchars = 2 + IDENTIFIER_LENGTH (DECL_NAME (parms));
fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:%c", ASM_STABS_OP,
IDENTIFIER_POINTER (DECL_NAME (parms)), IDENTIFIER_POINTER (DECL_NAME (parms)),
regparm_letter); regparm_letter);
} }
else else
{ {
current_sym_nchars = 8; current_sym_nchars = 8;
fprintf (asmfile, "%s \"(anon):%c", ASM_STABS_OP, fprintf (asmfile, "%s\"(anon):%c", ASM_STABS_OP,
regparm_letter); regparm_letter);
} }
...@@ -2457,14 +2457,14 @@ dbxout_parms (parms) ...@@ -2457,14 +2457,14 @@ dbxout_parms (parms)
{ {
current_sym_nchars = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms))); current_sym_nchars = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms)));
fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:%c", ASM_STABS_OP,
IDENTIFIER_POINTER (DECL_NAME (parms)), IDENTIFIER_POINTER (DECL_NAME (parms)),
regparm_letter); regparm_letter);
} }
else else
{ {
current_sym_nchars = 8; current_sym_nchars = 8;
fprintf (asmfile, "%s \"(anon):%c", ASM_STABS_OP, fprintf (asmfile, "%s\"(anon):%c", ASM_STABS_OP,
regparm_letter); regparm_letter);
} }
...@@ -2518,14 +2518,14 @@ dbxout_parms (parms) ...@@ -2518,14 +2518,14 @@ dbxout_parms (parms)
current_sym_nchars current_sym_nchars
= 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms))); = 2 + strlen (IDENTIFIER_POINTER (DECL_NAME (parms)));
fprintf (asmfile, "%s \"%s:%c", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:%c", ASM_STABS_OP,
IDENTIFIER_POINTER (DECL_NAME (parms)), IDENTIFIER_POINTER (DECL_NAME (parms)),
DBX_MEMPARM_STABS_LETTER); DBX_MEMPARM_STABS_LETTER);
} }
else else
{ {
current_sym_nchars = 8; current_sym_nchars = 8;
fprintf (asmfile, "%s \"(anon):%c", ASM_STABS_OP, fprintf (asmfile, "%s\"(anon):%c", ASM_STABS_OP,
DBX_MEMPARM_STABS_LETTER); DBX_MEMPARM_STABS_LETTER);
} }
...@@ -2538,7 +2538,7 @@ dbxout_parms (parms) ...@@ -2538,7 +2538,7 @@ dbxout_parms (parms)
{ {
/* Generate an entry for the stack location */ /* Generate an entry for the stack location */
fprintf (asmfile, "%s \"%s:", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:", ASM_STABS_OP,
IDENTIFIER_POINTER (DECL_NAME (parms))); IDENTIFIER_POINTER (DECL_NAME (parms)));
current_sym_value = aux_sym_value; current_sym_value = aux_sym_value;
current_sym_code = N_LSYM; current_sym_code = N_LSYM;
...@@ -2688,7 +2688,7 @@ dbxout_block (block, depth, args) ...@@ -2688,7 +2688,7 @@ dbxout_block (block, depth, args)
#ifdef DBX_OUTPUT_CATCH #ifdef DBX_OUTPUT_CATCH
DBX_OUTPUT_CATCH (asmfile, decl, buf); DBX_OUTPUT_CATCH (asmfile, decl, buf);
#else #else
fprintf (asmfile, "%s \"%s:C1\",%d,0,0,", ASM_STABS_OP, fprintf (asmfile, "%s\"%s:C1\",%d,0,0,", ASM_STABS_OP,
IDENTIFIER_POINTER (DECL_NAME (decl)), N_CATCH); IDENTIFIER_POINTER (DECL_NAME (decl)), N_CATCH);
assemble_name (asmfile, buf); assemble_name (asmfile, buf);
fprintf (asmfile, "\n"); fprintf (asmfile, "\n");
...@@ -2700,7 +2700,7 @@ dbxout_block (block, depth, args) ...@@ -2700,7 +2700,7 @@ dbxout_block (block, depth, args)
#ifdef DBX_OUTPUT_LBRAC #ifdef DBX_OUTPUT_LBRAC
DBX_OUTPUT_LBRAC (asmfile, buf); DBX_OUTPUT_LBRAC (asmfile, buf);
#else #else
fprintf (asmfile, "%s %d,0,0,", ASM_STABN_OP, N_LBRAC); fprintf (asmfile, "%s%d,0,0,", ASM_STABN_OP, N_LBRAC);
assemble_name (asmfile, buf); assemble_name (asmfile, buf);
#if DBX_BLOCKS_FUNCTION_RELATIVE #if DBX_BLOCKS_FUNCTION_RELATIVE
fputc ('-', asmfile); fputc ('-', asmfile);
...@@ -2730,7 +2730,7 @@ dbxout_block (block, depth, args) ...@@ -2730,7 +2730,7 @@ dbxout_block (block, depth, args)
#ifdef DBX_OUTPUT_RBRAC #ifdef DBX_OUTPUT_RBRAC
DBX_OUTPUT_RBRAC (asmfile, buf); DBX_OUTPUT_RBRAC (asmfile, buf);
#else #else
fprintf (asmfile, "%s %d,0,0,", ASM_STABN_OP, N_RBRAC); fprintf (asmfile, "%s%d,0,0,", ASM_STABN_OP, N_RBRAC);
assemble_name (asmfile, buf); assemble_name (asmfile, buf);
#if DBX_BLOCKS_FUNCTION_RELATIVE #if DBX_BLOCKS_FUNCTION_RELATIVE
fputc ('-', asmfile); fputc ('-', asmfile);
......
...@@ -118,7 +118,7 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0) ...@@ -118,7 +118,7 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0)
#ifdef SET_ASM_OP #ifdef SET_ASM_OP
#ifndef ASM_OUTPUT_DEF #ifndef ASM_OUTPUT_DEF
#define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \ #define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \
do { fprintf ((FILE), "\t%s\t", SET_ASM_OP); \ do { fprintf ((FILE), "%s", SET_ASM_OP); \
assemble_name (FILE, LABEL1); \ assemble_name (FILE, LABEL1); \
fprintf (FILE, ","); \ fprintf (FILE, ","); \
assemble_name (FILE, LABEL2); \ assemble_name (FILE, LABEL2); \
......
...@@ -273,7 +273,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -273,7 +273,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
#ifdef PUSHSECTION_FORMAT #ifdef PUSHSECTION_FORMAT
#define SECTION_FORMAT PUSHSECTION_FORMAT #define SECTION_FORMAT PUSHSECTION_FORMAT
#else #else
#define SECTION_FORMAT "\t%s\t%s\n" #define SECTION_FORMAT "%s%s\n"
#endif #endif
#endif #endif
...@@ -306,12 +306,12 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -306,12 +306,12 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
#ifndef ASM_OUTPUT_DWARF_DATA1 #ifndef ASM_OUTPUT_DWARF_DATA1
#define ASM_OUTPUT_DWARF_DATA1(FILE,VALUE) \ #define ASM_OUTPUT_DWARF_DATA1(FILE,VALUE) \
fprintf ((FILE), "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) (VALUE)) fprintf ((FILE), "%s0x%x", ASM_BYTE_OP, (unsigned) (VALUE))
#endif #endif
#ifndef ASM_OUTPUT_DWARF_DELTA1 #ifndef ASM_OUTPUT_DWARF_DELTA1
#define ASM_OUTPUT_DWARF_DELTA1(FILE,LABEL1,LABEL2) \ #define ASM_OUTPUT_DWARF_DELTA1(FILE,LABEL1,LABEL2) \
do { fprintf ((FILE), "\t%s\t", ASM_BYTE_OP); \ do { fprintf ((FILE), "%s", ASM_BYTE_OP); \
assemble_name (FILE, LABEL1); \ assemble_name (FILE, LABEL1); \
fprintf (FILE, "-"); \ fprintf (FILE, "-"); \
assemble_name (FILE, LABEL2); \ assemble_name (FILE, LABEL2); \
...@@ -334,7 +334,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -334,7 +334,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
#ifndef ASM_OUTPUT_DWARF_DELTA2 #ifndef ASM_OUTPUT_DWARF_DELTA2
#define ASM_OUTPUT_DWARF_DELTA2(FILE,LABEL1,LABEL2) \ #define ASM_OUTPUT_DWARF_DELTA2(FILE,LABEL1,LABEL2) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_SHORT_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_SHORT_ASM_OP); \
assemble_name (FILE, LABEL1); \ assemble_name (FILE, LABEL1); \
fprintf (FILE, "-"); \ fprintf (FILE, "-"); \
assemble_name (FILE, LABEL2); \ assemble_name (FILE, LABEL2); \
...@@ -343,7 +343,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -343,7 +343,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
#ifndef ASM_OUTPUT_DWARF_DELTA4 #ifndef ASM_OUTPUT_DWARF_DELTA4
#define ASM_OUTPUT_DWARF_DELTA4(FILE,LABEL1,LABEL2) \ #define ASM_OUTPUT_DWARF_DELTA4(FILE,LABEL1,LABEL2) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_INT_ASM_OP); \
assemble_name (FILE, LABEL1); \ assemble_name (FILE, LABEL1); \
fprintf (FILE, "-"); \ fprintf (FILE, "-"); \
assemble_name (FILE, LABEL2); \ assemble_name (FILE, LABEL2); \
...@@ -352,7 +352,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -352,7 +352,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
#ifndef ASM_OUTPUT_DWARF_DELTA #ifndef ASM_OUTPUT_DWARF_DELTA
#define ASM_OUTPUT_DWARF_DELTA(FILE,LABEL1,LABEL2) \ #define ASM_OUTPUT_DWARF_DELTA(FILE,LABEL1,LABEL2) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_OFFSET_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_OFFSET_ASM_OP); \
assemble_name (FILE, LABEL1); \ assemble_name (FILE, LABEL1); \
fprintf (FILE, "-"); \ fprintf (FILE, "-"); \
assemble_name (FILE, LABEL2); \ assemble_name (FILE, LABEL2); \
...@@ -361,7 +361,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -361,7 +361,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
#ifndef ASM_OUTPUT_DWARF_ADDR_DELTA #ifndef ASM_OUTPUT_DWARF_ADDR_DELTA
#define ASM_OUTPUT_DWARF_ADDR_DELTA(FILE,LABEL1,LABEL2) \ #define ASM_OUTPUT_DWARF_ADDR_DELTA(FILE,LABEL1,LABEL2) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_WORD_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_WORD_ASM_OP); \
assemble_name (FILE, LABEL1); \ assemble_name (FILE, LABEL1); \
fprintf (FILE, "-"); \ fprintf (FILE, "-"); \
assemble_name (FILE, LABEL2); \ assemble_name (FILE, LABEL2); \
...@@ -370,7 +370,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -370,7 +370,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
#ifndef ASM_OUTPUT_DWARF_ADDR #ifndef ASM_OUTPUT_DWARF_ADDR
#define ASM_OUTPUT_DWARF_ADDR(FILE,LABEL) \ #define ASM_OUTPUT_DWARF_ADDR(FILE,LABEL) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_WORD_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_WORD_ASM_OP); \
assemble_name (FILE, LABEL); \ assemble_name (FILE, LABEL); \
} while (0) } while (0)
#endif #endif
...@@ -378,50 +378,50 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -378,50 +378,50 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
#ifndef ASM_OUTPUT_DWARF_ADDR_CONST #ifndef ASM_OUTPUT_DWARF_ADDR_CONST
#define ASM_OUTPUT_DWARF_ADDR_CONST(FILE,RTX) \ #define ASM_OUTPUT_DWARF_ADDR_CONST(FILE,RTX) \
do { \ do { \
fprintf ((FILE), "\t%s\t", UNALIGNED_WORD_ASM_OP); \ fprintf ((FILE), "%s", UNALIGNED_WORD_ASM_OP); \
output_addr_const ((FILE), (RTX)); \ output_addr_const ((FILE), (RTX)); \
} while (0) } while (0)
#endif #endif
#ifndef ASM_OUTPUT_DWARF_OFFSET4 #ifndef ASM_OUTPUT_DWARF_OFFSET4
#define ASM_OUTPUT_DWARF_OFFSET4(FILE,LABEL) \ #define ASM_OUTPUT_DWARF_OFFSET4(FILE,LABEL) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_INT_ASM_OP); \
assemble_name (FILE, LABEL); \ assemble_name (FILE, LABEL); \
} while (0) } while (0)
#endif #endif
#ifndef ASM_OUTPUT_DWARF_OFFSET #ifndef ASM_OUTPUT_DWARF_OFFSET
#define ASM_OUTPUT_DWARF_OFFSET(FILE,LABEL) \ #define ASM_OUTPUT_DWARF_OFFSET(FILE,LABEL) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_OFFSET_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_OFFSET_ASM_OP); \
assemble_name (FILE, LABEL); \ assemble_name (FILE, LABEL); \
} while (0) } while (0)
#endif #endif
#ifndef ASM_OUTPUT_DWARF_DATA2 #ifndef ASM_OUTPUT_DWARF_DATA2
#define ASM_OUTPUT_DWARF_DATA2(FILE,VALUE) \ #define ASM_OUTPUT_DWARF_DATA2(FILE,VALUE) \
fprintf ((FILE), "\t%s\t0x%x", UNALIGNED_SHORT_ASM_OP, (unsigned) (VALUE)) fprintf ((FILE), "%s0x%x", UNALIGNED_SHORT_ASM_OP, (unsigned) (VALUE))
#endif #endif
#ifndef ASM_OUTPUT_DWARF_DATA4 #ifndef ASM_OUTPUT_DWARF_DATA4
#define ASM_OUTPUT_DWARF_DATA4(FILE,VALUE) \ #define ASM_OUTPUT_DWARF_DATA4(FILE,VALUE) \
fprintf ((FILE), "\t%s\t0x%x", UNALIGNED_INT_ASM_OP, (unsigned) (VALUE)) fprintf ((FILE), "%s0x%x", UNALIGNED_INT_ASM_OP, (unsigned) (VALUE))
#endif #endif
#ifndef ASM_OUTPUT_DWARF_DATA8 #ifndef ASM_OUTPUT_DWARF_DATA8
#define ASM_OUTPUT_DWARF_DATA8(FILE,VALUE) \ #define ASM_OUTPUT_DWARF_DATA8(FILE,VALUE) \
fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_DOUBLE_INT_ASM_OP, \ fprintf ((FILE), "%s0x%lx", UNALIGNED_DOUBLE_INT_ASM_OP, \
(unsigned long) (VALUE)) (unsigned long) (VALUE))
#endif #endif
#ifndef ASM_OUTPUT_DWARF_DATA #ifndef ASM_OUTPUT_DWARF_DATA
#define ASM_OUTPUT_DWARF_DATA(FILE,VALUE) \ #define ASM_OUTPUT_DWARF_DATA(FILE,VALUE) \
fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_OFFSET_ASM_OP, \ fprintf ((FILE), "%s0x%lx", UNALIGNED_OFFSET_ASM_OP, \
(unsigned long) (VALUE)) (unsigned long) (VALUE))
#endif #endif
#ifndef ASM_OUTPUT_DWARF_ADDR_DATA #ifndef ASM_OUTPUT_DWARF_ADDR_DATA
#define ASM_OUTPUT_DWARF_ADDR_DATA(FILE,VALUE) \ #define ASM_OUTPUT_DWARF_ADDR_DATA(FILE,VALUE) \
fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_WORD_ASM_OP, \ fprintf ((FILE), "%s0x%lx", UNALIGNED_WORD_ASM_OP, \
(unsigned long) (VALUE)) (unsigned long) (VALUE))
#endif #endif
...@@ -430,13 +430,13 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -430,13 +430,13 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
do { \ do { \
if (WORDS_BIG_ENDIAN) \ if (WORDS_BIG_ENDIAN) \
{ \ { \
fprintf ((FILE), "\t%s\t0x%lx\n", UNALIGNED_INT_ASM_OP, (HIGH_VALUE));\ fprintf ((FILE), "%s0x%lx\n", UNALIGNED_INT_ASM_OP, (HIGH_VALUE));\
fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_INT_ASM_OP, (LOW_VALUE));\ fprintf ((FILE), "%s0x%lx", UNALIGNED_INT_ASM_OP, (LOW_VALUE));\
} \ } \
else \ else \
{ \ { \
fprintf ((FILE), "\t%s\t0x%lx\n", UNALIGNED_INT_ASM_OP, (LOW_VALUE)); \ fprintf ((FILE), "%s0x%lx\n", UNALIGNED_INT_ASM_OP, (LOW_VALUE)); \
fprintf ((FILE), "\t%s\t0x%lx", UNALIGNED_INT_ASM_OP, (HIGH_VALUE)); \ fprintf ((FILE), "%s0x%lx", UNALIGNED_INT_ASM_OP, (HIGH_VALUE)); \
} \ } \
} while (0) } while (0)
#endif #endif
...@@ -514,7 +514,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); ...@@ -514,7 +514,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *));
#ifndef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL #ifndef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
#define ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL(FILE, SY, HI, LO) \ #define ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL(FILE, SY, HI, LO) \
do { \ do { \
fprintf (FILE, "\t%s\t", SET_ASM_OP); \ fprintf (FILE, "%s", SET_ASM_OP); \
assemble_name (FILE, SY); \ assemble_name (FILE, SY); \
fputc (',', FILE); \ fputc (',', FILE); \
assemble_name (FILE, HI); \ assemble_name (FILE, HI); \
...@@ -1563,7 +1563,7 @@ output_uleb128 (value) ...@@ -1563,7 +1563,7 @@ output_uleb128 (value)
{ {
unsigned long save_value = value; unsigned long save_value = value;
fprintf (asm_out_file, "\t%s\t", ASM_BYTE_OP); fprintf (asm_out_file, "%s", ASM_BYTE_OP);
do do
{ {
register unsigned byte = (value & 0x7f); register unsigned byte = (value & 0x7f);
...@@ -1592,7 +1592,7 @@ output_sleb128 (value) ...@@ -1592,7 +1592,7 @@ output_sleb128 (value)
register unsigned byte; register unsigned byte;
long save_value = value; long save_value = value;
fprintf (asm_out_file, "\t%s\t", ASM_BYTE_OP); fprintf (asm_out_file, "%s", ASM_BYTE_OP);
do do
{ {
byte = (value & 0x7f); byte = (value & 0x7f);
...@@ -5789,7 +5789,7 @@ output_abbrev_section () ...@@ -5789,7 +5789,7 @@ output_abbrev_section ()
dwarf_tag_name (abbrev->die_tag)); dwarf_tag_name (abbrev->die_tag));
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
fprintf (asm_out_file, "\t%s\t0x%x", ASM_BYTE_OP, fprintf (asm_out_file, "%s0x%x", ASM_BYTE_OP,
abbrev->die_child != NULL ? DW_children_yes : DW_children_no); abbrev->die_child != NULL ? DW_children_yes : DW_children_no);
if (flag_debug_asm) if (flag_debug_asm)
...@@ -5812,11 +5812,11 @@ output_abbrev_section () ...@@ -5812,11 +5812,11 @@ output_abbrev_section ()
output_value_format (a_attr); output_value_format (a_attr);
} }
fprintf (asm_out_file, "\t%s\t0,0\n", ASM_BYTE_OP); fprintf (asm_out_file, "%s0,0\n", ASM_BYTE_OP);
} }
/* Terminate the table. */ /* Terminate the table. */
fprintf (asm_out_file, "\t%s\t0\n", ASM_BYTE_OP); fprintf (asm_out_file, "%s0\n", ASM_BYTE_OP);
} }
/* Output a symbol we can use to refer to this DIE from another CU. */ /* Output a symbol we can use to refer to this DIE from another CU. */
...@@ -6403,19 +6403,19 @@ output_line_info () ...@@ -6403,19 +6403,19 @@ output_line_info ()
ASM_COMMENT_START); ASM_COMMENT_START);
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
fprintf (asm_out_file, "\t%s\t%d", ASM_BYTE_OP, DWARF_LINE_BASE); fprintf (asm_out_file, "%s%d", ASM_BYTE_OP, DWARF_LINE_BASE);
if (flag_debug_asm) if (flag_debug_asm)
fprintf (asm_out_file, "\t%s Line Base Value (Special Opcodes)", fprintf (asm_out_file, "\t%s Line Base Value (Special Opcodes)",
ASM_COMMENT_START); ASM_COMMENT_START);
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
fprintf (asm_out_file, "\t%s\t%u", ASM_BYTE_OP, DWARF_LINE_RANGE); fprintf (asm_out_file, "%s%u", ASM_BYTE_OP, DWARF_LINE_RANGE);
if (flag_debug_asm) if (flag_debug_asm)
fprintf (asm_out_file, "\t%s Line Range Value (Special Opcodes)", fprintf (asm_out_file, "\t%s Line Range Value (Special Opcodes)",
ASM_COMMENT_START); ASM_COMMENT_START);
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
fprintf (asm_out_file, "\t%s\t%u", ASM_BYTE_OP, DWARF_LINE_OPCODE_BASE); fprintf (asm_out_file, "%s%u", ASM_BYTE_OP, DWARF_LINE_OPCODE_BASE);
if (flag_debug_asm) if (flag_debug_asm)
fprintf (asm_out_file, "\t%s Special Opcode Base", ASM_COMMENT_START); fprintf (asm_out_file, "\t%s Special Opcode Base", ASM_COMMENT_START);
......
...@@ -426,7 +426,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -426,7 +426,7 @@ static void retry_incomplete_types PARAMS ((void));
section name must be enclosed in double quotes. (See sparcv4.h.) */ section name must be enclosed in double quotes. (See sparcv4.h.) */
#ifndef PUSHSECTION_FORMAT #ifndef PUSHSECTION_FORMAT
#define PUSHSECTION_FORMAT "\t%s\t%s\n" #define PUSHSECTION_FORMAT "%s%s\n"
#endif #endif
#ifndef DEBUG_SECTION #ifndef DEBUG_SECTION
...@@ -650,12 +650,12 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -650,12 +650,12 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_POP_SECTION #ifndef ASM_OUTPUT_POP_SECTION
#define ASM_OUTPUT_POP_SECTION(FILE) \ #define ASM_OUTPUT_POP_SECTION(FILE) \
fprintf ((FILE), "\t%s\n", POPSECTION_ASM_OP) fprintf ((FILE), "%s\n", POPSECTION_ASM_OP)
#endif #endif
#ifndef ASM_OUTPUT_DWARF_DELTA2 #ifndef ASM_OUTPUT_DWARF_DELTA2
#define ASM_OUTPUT_DWARF_DELTA2(FILE,LABEL1,LABEL2) \ #define ASM_OUTPUT_DWARF_DELTA2(FILE,LABEL1,LABEL2) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_SHORT_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_SHORT_ASM_OP); \
assemble_name (FILE, LABEL1); \ assemble_name (FILE, LABEL1); \
fprintf (FILE, "-"); \ fprintf (FILE, "-"); \
assemble_name (FILE, LABEL2); \ assemble_name (FILE, LABEL2); \
...@@ -665,7 +665,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -665,7 +665,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_DELTA4 #ifndef ASM_OUTPUT_DWARF_DELTA4
#define ASM_OUTPUT_DWARF_DELTA4(FILE,LABEL1,LABEL2) \ #define ASM_OUTPUT_DWARF_DELTA4(FILE,LABEL1,LABEL2) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_INT_ASM_OP); \
assemble_name (FILE, LABEL1); \ assemble_name (FILE, LABEL1); \
fprintf (FILE, "-"); \ fprintf (FILE, "-"); \
assemble_name (FILE, LABEL2); \ assemble_name (FILE, LABEL2); \
...@@ -676,7 +676,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -676,7 +676,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_TAG #ifndef ASM_OUTPUT_DWARF_TAG
#define ASM_OUTPUT_DWARF_TAG(FILE,TAG) \ #define ASM_OUTPUT_DWARF_TAG(FILE,TAG) \
do { \ do { \
fprintf ((FILE), "\t%s\t0x%x", \ fprintf ((FILE), "%s0x%x", \
UNALIGNED_SHORT_ASM_OP, (unsigned) TAG); \ UNALIGNED_SHORT_ASM_OP, (unsigned) TAG); \
if (flag_debug_asm) \ if (flag_debug_asm) \
fprintf ((FILE), "\t%s %s", \ fprintf ((FILE), "\t%s %s", \
...@@ -688,7 +688,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -688,7 +688,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_ATTRIBUTE #ifndef ASM_OUTPUT_DWARF_ATTRIBUTE
#define ASM_OUTPUT_DWARF_ATTRIBUTE(FILE,ATTR) \ #define ASM_OUTPUT_DWARF_ATTRIBUTE(FILE,ATTR) \
do { \ do { \
fprintf ((FILE), "\t%s\t0x%x", \ fprintf ((FILE), "%s0x%x", \
UNALIGNED_SHORT_ASM_OP, (unsigned) ATTR); \ UNALIGNED_SHORT_ASM_OP, (unsigned) ATTR); \
if (flag_debug_asm) \ if (flag_debug_asm) \
fprintf ((FILE), "\t%s %s", \ fprintf ((FILE), "\t%s %s", \
...@@ -700,7 +700,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -700,7 +700,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_STACK_OP #ifndef ASM_OUTPUT_DWARF_STACK_OP
#define ASM_OUTPUT_DWARF_STACK_OP(FILE,OP) \ #define ASM_OUTPUT_DWARF_STACK_OP(FILE,OP) \
do { \ do { \
fprintf ((FILE), "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) OP); \ fprintf ((FILE), "%s0x%x", ASM_BYTE_OP, (unsigned) OP); \
if (flag_debug_asm) \ if (flag_debug_asm) \
fprintf ((FILE), "\t%s %s", \ fprintf ((FILE), "\t%s %s", \
ASM_COMMENT_START, dwarf_stack_op_name (OP)); \ ASM_COMMENT_START, dwarf_stack_op_name (OP)); \
...@@ -711,7 +711,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -711,7 +711,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_FUND_TYPE #ifndef ASM_OUTPUT_DWARF_FUND_TYPE
#define ASM_OUTPUT_DWARF_FUND_TYPE(FILE,FT) \ #define ASM_OUTPUT_DWARF_FUND_TYPE(FILE,FT) \
do { \ do { \
fprintf ((FILE), "\t%s\t0x%x", \ fprintf ((FILE), "%s0x%x", \
UNALIGNED_SHORT_ASM_OP, (unsigned) FT); \ UNALIGNED_SHORT_ASM_OP, (unsigned) FT); \
if (flag_debug_asm) \ if (flag_debug_asm) \
fprintf ((FILE), "\t%s %s", \ fprintf ((FILE), "\t%s %s", \
...@@ -723,7 +723,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -723,7 +723,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_FMT_BYTE #ifndef ASM_OUTPUT_DWARF_FMT_BYTE
#define ASM_OUTPUT_DWARF_FMT_BYTE(FILE,FMT) \ #define ASM_OUTPUT_DWARF_FMT_BYTE(FILE,FMT) \
do { \ do { \
fprintf ((FILE), "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) FMT); \ fprintf ((FILE), "%s0x%x", ASM_BYTE_OP, (unsigned) FMT); \
if (flag_debug_asm) \ if (flag_debug_asm) \
fprintf ((FILE), "\t%s %s", \ fprintf ((FILE), "\t%s %s", \
ASM_COMMENT_START, dwarf_fmt_byte_name (FMT)); \ ASM_COMMENT_START, dwarf_fmt_byte_name (FMT)); \
...@@ -734,7 +734,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -734,7 +734,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_TYPE_MODIFIER #ifndef ASM_OUTPUT_DWARF_TYPE_MODIFIER
#define ASM_OUTPUT_DWARF_TYPE_MODIFIER(FILE,MOD) \ #define ASM_OUTPUT_DWARF_TYPE_MODIFIER(FILE,MOD) \
do { \ do { \
fprintf ((FILE), "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) MOD); \ fprintf ((FILE), "%s0x%x", ASM_BYTE_OP, (unsigned) MOD); \
if (flag_debug_asm) \ if (flag_debug_asm) \
fprintf ((FILE), "\t%s %s", \ fprintf ((FILE), "\t%s %s", \
ASM_COMMENT_START, dwarf_typemod_name (MOD)); \ ASM_COMMENT_START, dwarf_typemod_name (MOD)); \
...@@ -744,7 +744,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -744,7 +744,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_ADDR #ifndef ASM_OUTPUT_DWARF_ADDR
#define ASM_OUTPUT_DWARF_ADDR(FILE,LABEL) \ #define ASM_OUTPUT_DWARF_ADDR(FILE,LABEL) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_INT_ASM_OP); \
assemble_name (FILE, LABEL); \ assemble_name (FILE, LABEL); \
fprintf (FILE, "\n"); \ fprintf (FILE, "\n"); \
} while (0) } while (0)
...@@ -753,7 +753,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -753,7 +753,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_ADDR_CONST #ifndef ASM_OUTPUT_DWARF_ADDR_CONST
#define ASM_OUTPUT_DWARF_ADDR_CONST(FILE,RTX) \ #define ASM_OUTPUT_DWARF_ADDR_CONST(FILE,RTX) \
do { \ do { \
fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \ fprintf ((FILE), "%s", UNALIGNED_INT_ASM_OP); \
output_addr_const ((FILE), (RTX)); \ output_addr_const ((FILE), (RTX)); \
fputc ('\n', (FILE)); \ fputc ('\n', (FILE)); \
} while (0) } while (0)
...@@ -761,7 +761,7 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -761,7 +761,7 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_REF #ifndef ASM_OUTPUT_DWARF_REF
#define ASM_OUTPUT_DWARF_REF(FILE,LABEL) \ #define ASM_OUTPUT_DWARF_REF(FILE,LABEL) \
do { fprintf ((FILE), "\t%s\t", UNALIGNED_INT_ASM_OP); \ do { fprintf ((FILE), "%s", UNALIGNED_INT_ASM_OP); \
assemble_name (FILE, LABEL); \ assemble_name (FILE, LABEL); \
fprintf (FILE, "\n"); \ fprintf (FILE, "\n"); \
} while (0) } while (0)
...@@ -769,17 +769,17 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -769,17 +769,17 @@ static void retry_incomplete_types PARAMS ((void));
#ifndef ASM_OUTPUT_DWARF_DATA1 #ifndef ASM_OUTPUT_DWARF_DATA1
#define ASM_OUTPUT_DWARF_DATA1(FILE,VALUE) \ #define ASM_OUTPUT_DWARF_DATA1(FILE,VALUE) \
fprintf ((FILE), "\t%s\t0x%x\n", ASM_BYTE_OP, VALUE) fprintf ((FILE), "%s0x%x\n", ASM_BYTE_OP, VALUE)
#endif #endif
#ifndef ASM_OUTPUT_DWARF_DATA2 #ifndef ASM_OUTPUT_DWARF_DATA2
#define ASM_OUTPUT_DWARF_DATA2(FILE,VALUE) \ #define ASM_OUTPUT_DWARF_DATA2(FILE,VALUE) \
fprintf ((FILE), "\t%s\t0x%x\n", UNALIGNED_SHORT_ASM_OP, (unsigned) VALUE) fprintf ((FILE), "%s0x%x\n", UNALIGNED_SHORT_ASM_OP, (unsigned) VALUE)
#endif #endif
#ifndef ASM_OUTPUT_DWARF_DATA4 #ifndef ASM_OUTPUT_DWARF_DATA4
#define ASM_OUTPUT_DWARF_DATA4(FILE,VALUE) \ #define ASM_OUTPUT_DWARF_DATA4(FILE,VALUE) \
fprintf ((FILE), "\t%s\t0x%x\n", UNALIGNED_INT_ASM_OP, (unsigned) VALUE) fprintf ((FILE), "%s0x%x\n", UNALIGNED_INT_ASM_OP, (unsigned) VALUE)
#endif #endif
#ifndef ASM_OUTPUT_DWARF_DATA8 #ifndef ASM_OUTPUT_DWARF_DATA8
...@@ -787,13 +787,13 @@ static void retry_incomplete_types PARAMS ((void)); ...@@ -787,13 +787,13 @@ static void retry_incomplete_types PARAMS ((void));
do { \ do { \
if (WORDS_BIG_ENDIAN) \ if (WORDS_BIG_ENDIAN) \
{ \ { \
fprintf ((FILE), "\t%s\t0x%x\n", UNALIGNED_INT_ASM_OP, HIGH_VALUE); \ fprintf ((FILE), "%s0x%x\n", UNALIGNED_INT_ASM_OP, HIGH_VALUE); \
fprintf ((FILE), "\t%s\t0x%x\n", UNALIGNED_INT_ASM_OP, LOW_VALUE);\ fprintf ((FILE), "%s0x%x\n", UNALIGNED_INT_ASM_OP, LOW_VALUE); \
} \ } \
else \ else \
{ \ { \
fprintf ((FILE), "\t%s\t0x%x\n", UNALIGNED_INT_ASM_OP, LOW_VALUE);\ fprintf ((FILE), "%s0x%x\n", UNALIGNED_INT_ASM_OP, LOW_VALUE); \
fprintf ((FILE), "\t%s\t0x%x\n", UNALIGNED_INT_ASM_OP, HIGH_VALUE); \ fprintf ((FILE), "%s0x%x\n", UNALIGNED_INT_ASM_OP, HIGH_VALUE); \
} \ } \
} while (0) } while (0)
#endif #endif
...@@ -1180,7 +1180,7 @@ output_unsigned_leb128 (value) ...@@ -1180,7 +1180,7 @@ output_unsigned_leb128 (value)
value >>= 7; value >>= 7;
if (value != 0) /* more bytes to follow */ if (value != 0) /* more bytes to follow */
byte |= 0x80; byte |= 0x80;
fprintf (asm_out_file, "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) byte); fprintf (asm_out_file, "%s0x%x", ASM_BYTE_OP, (unsigned) byte);
if (flag_debug_asm && value == 0) if (flag_debug_asm && value == 0)
fprintf (asm_out_file, "\t%s ULEB128 number - value = %lu", fprintf (asm_out_file, "\t%s ULEB128 number - value = %lu",
ASM_COMMENT_START, orig_value); ASM_COMMENT_START, orig_value);
...@@ -1212,7 +1212,7 @@ output_signed_leb128 (value) ...@@ -1212,7 +1212,7 @@ output_signed_leb128 (value)
byte |= 0x80; byte |= 0x80;
more = 1; more = 1;
} }
fprintf (asm_out_file, "\t%s\t0x%x", ASM_BYTE_OP, (unsigned) byte); fprintf (asm_out_file, "%s0x%x", ASM_BYTE_OP, (unsigned) byte);
if (flag_debug_asm && more == 0) if (flag_debug_asm && more == 0)
fprintf (asm_out_file, "\t%s SLEB128 number - value = %ld", fprintf (asm_out_file, "\t%s SLEB128 number - value = %ld",
ASM_COMMENT_START, orig_value); ASM_COMMENT_START, orig_value);
...@@ -1591,7 +1591,7 @@ output_reg_number (rtl) ...@@ -1591,7 +1591,7 @@ output_reg_number (rtl)
regno); regno);
regno = 0; regno = 0;
} }
fprintf (asm_out_file, "\t%s\t0x%x", fprintf (asm_out_file, "%s0x%x",
UNALIGNED_INT_ASM_OP, DBX_REGISTER_NUMBER (regno)); UNALIGNED_INT_ASM_OP, DBX_REGISTER_NUMBER (regno));
if (flag_debug_asm) if (flag_debug_asm)
{ {
...@@ -5541,7 +5541,7 @@ dwarfout_line (filename, line) ...@@ -5541,7 +5541,7 @@ dwarfout_line (filename, line)
filename = tail; filename = tail;
} }
fprintf (asm_out_file, "\t%s\t%u\t%s %s:%u\n", fprintf (asm_out_file, "%s%u\t%s %s:%u\n",
UNALIGNED_INT_ASM_OP, line, ASM_COMMENT_START, UNALIGNED_INT_ASM_OP, line, ASM_COMMENT_START,
filename, line); filename, line);
ASM_OUTPUT_DWARF_DATA2 (asm_out_file, 0xffff); ASM_OUTPUT_DWARF_DATA2 (asm_out_file, 0xffff);
...@@ -5566,7 +5566,7 @@ generate_macinfo_entry (type_and_offset, string) ...@@ -5566,7 +5566,7 @@ generate_macinfo_entry (type_and_offset, string)
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
ASM_OUTPUT_PUSH_SECTION (asm_out_file, MACINFO_SECTION); ASM_OUTPUT_PUSH_SECTION (asm_out_file, MACINFO_SECTION);
fprintf (asm_out_file, "\t%s\t%s\n", UNALIGNED_INT_ASM_OP, type_and_offset); fprintf (asm_out_file, "%s%s\n", UNALIGNED_INT_ASM_OP, type_and_offset);
ASM_OUTPUT_DWARF_STRING_NEWLINE (asm_out_file, string); ASM_OUTPUT_DWARF_STRING_NEWLINE (asm_out_file, string);
ASM_OUTPUT_POP_SECTION (asm_out_file); ASM_OUTPUT_POP_SECTION (asm_out_file);
} }
......
...@@ -922,7 +922,7 @@ assemble_destructor (name) ...@@ -922,7 +922,7 @@ assemble_destructor (name)
{ {
/* Now tell GNU LD that this is part of the static destructor set. */ /* Now tell GNU LD that this is part of the static destructor set. */
/* This code works for any machine provided you use GNU as/ld. */ /* This code works for any machine provided you use GNU as/ld. */
fprintf (asm_out_file, "%s \"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP); fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP);
assemble_name (asm_out_file, name); assemble_name (asm_out_file, name);
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
} }
...@@ -942,7 +942,7 @@ assemble_constructor (name) ...@@ -942,7 +942,7 @@ assemble_constructor (name)
{ {
/* Now tell GNU LD that this is part of the static constructor set. */ /* Now tell GNU LD that this is part of the static constructor set. */
/* This code works for any machine provided you use GNU as/ld. */ /* This code works for any machine provided you use GNU as/ld. */
fprintf (asm_out_file, "%s \"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP); fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP);
assemble_name (asm_out_file, name); assemble_name (asm_out_file, name);
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
} }
...@@ -962,7 +962,7 @@ assemble_gc_entry (name) ...@@ -962,7 +962,7 @@ assemble_gc_entry (name)
if (flag_gnu_linker) if (flag_gnu_linker)
{ {
/* Now tell GNU LD that this is part of the static constructor set. */ /* Now tell GNU LD that this is part of the static constructor set. */
fprintf (asm_out_file, "%s \"___PTR_LIST__\",22,0,0,", ASM_STABS_OP); fprintf (asm_out_file, "%s\"___PTR_LIST__\",22,0,0,", ASM_STABS_OP);
assemble_name (asm_out_file, name); assemble_name (asm_out_file, name);
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
} }
...@@ -1127,7 +1127,7 @@ assemble_zeros (size) ...@@ -1127,7 +1127,7 @@ assemble_zeros (size)
{ {
#ifdef ASM_BYTE_OP #ifdef ASM_BYTE_OP
fprintf (asm_out_file, fprintf (asm_out_file,
"%s 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n", ASM_BYTE_OP); "%s0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n", ASM_BYTE_OP);
#else #else
fprintf (asm_out_file, fprintf (asm_out_file,
"\tbyte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n"); "\tbyte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n");
...@@ -1136,7 +1136,7 @@ assemble_zeros (size) ...@@ -1136,7 +1136,7 @@ assemble_zeros (size)
if (i < size) if (i < size)
{ {
#ifdef ASM_BYTE_OP #ifdef ASM_BYTE_OP
fprintf (asm_out_file, "%s 0", ASM_BYTE_OP); fprintf (asm_out_file, "%s0", ASM_BYTE_OP);
#else #else
fprintf (asm_out_file, "\tbyte 0"); fprintf (asm_out_file, "\tbyte 0");
#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