Commit ac260b05 by Jason Merrill Committed by Jason Merrill

dwarf2out.c (dwarf2out_line): Emit a line number comment after the label if we're being verbose.

	* dwarf2out.c (dwarf2out_line): Emit a line number comment after
	the label if we're being verbose.

From-SVN: r28027
parent 6ccecb36
Thu Jul 8 18:06:30 1999 Jason Merrill <jason@yorick.cygnus.com>
* dwarf2out.c (dwarf2out_line): Emit a line number comment after
the label if we're being verbose.
Thu Jul 8 14:18:46 1999 Richard Henderson <rth@cygnus.com> Thu Jul 8 14:18:46 1999 Richard Henderson <rth@cygnus.com>
* m68k.c (output_function_prologue): Add pic register to mask * m68k.c (output_function_prologue): Add pic register to mask
......
...@@ -9844,6 +9844,8 @@ dwarf2out_line (filename, line) ...@@ -9844,6 +9844,8 @@ dwarf2out_line (filename, line)
register dw_separate_line_info_ref line_info; register dw_separate_line_info_ref line_info;
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, SEPARATE_LINE_CODE_LABEL, ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, SEPARATE_LINE_CODE_LABEL,
separate_line_info_table_in_use); separate_line_info_table_in_use);
if (flag_debug_asm)
fprintf (asm_out_file, "\t%s line %d", ASM_COMMENT_START, line);
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
/* expand the line info table if necessary */ /* expand the line info table if necessary */
...@@ -9871,6 +9873,8 @@ dwarf2out_line (filename, line) ...@@ -9871,6 +9873,8 @@ dwarf2out_line (filename, line)
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, LINE_CODE_LABEL, ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, LINE_CODE_LABEL,
line_info_table_in_use); line_info_table_in_use);
if (flag_debug_asm)
fprintf (asm_out_file, "\t%s line %d", ASM_COMMENT_START, line);
fputc ('\n', asm_out_file); fputc ('\n', asm_out_file);
/* Expand the line info table if necessary. */ /* Expand the line info table if necessary. */
......
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