Commit b24cbb63 by Eric Botcazou Committed by Eric Botcazou

* dwarf2out.c (dwarf2out_source_line): Remove superfluous test.

From-SVN: r252753
parent c5f59763
2017-09-14 Eric Botcazou <ebotcazou@adacore.com>
* dwarf2out.c (dwarf2out_source_line): Remove superfluous test.
2017-09-14 Jakub Jelinek <jakub@redhat.com> 2017-09-14 Jakub Jelinek <jakub@redhat.com>
PR target/81325 PR target/81325
......
...@@ -26645,10 +26645,7 @@ dwarf2out_source_line (unsigned int line, unsigned int column, ...@@ -26645,10 +26645,7 @@ dwarf2out_source_line (unsigned int line, unsigned int column,
putc (' ', asm_out_file); putc (' ', asm_out_file);
fprint_ul (asm_out_file, line); fprint_ul (asm_out_file, line);
putc (' ', asm_out_file); putc (' ', asm_out_file);
if (debug_column_info) fprint_ul (asm_out_file, column);
fprint_ul (asm_out_file, column);
else
putc ('0', asm_out_file);
if (is_stmt != table->is_stmt) if (is_stmt != table->is_stmt)
{ {
......
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