From: Eric Botcazou Date: Thu, 14 Sep 2017 08:33:20 +0000 (+0000) Subject: * dwarf2out.c (dwarf2out_source_line): Remove superfluous test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b24cbb634a1454dd283c7d40afa4c0ec6f570e9e;p=gcc.git * dwarf2out.c (dwarf2out_source_line): Remove superfluous test. From-SVN: r252753 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9617de3f5bd..537005bc6cb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2017-09-14 Eric Botcazou + + * dwarf2out.c (dwarf2out_source_line): Remove superfluous test. + 2017-09-14 Jakub Jelinek PR target/81325 diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 980c4cced23..6a4cd602795 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -26645,10 +26645,7 @@ dwarf2out_source_line (unsigned int line, unsigned int column, putc (' ', asm_out_file); fprint_ul (asm_out_file, line); putc (' ', asm_out_file); - if (debug_column_info) - fprint_ul (asm_out_file, column); - else - putc ('0', asm_out_file); + fprint_ul (asm_out_file, column); if (is_stmt != table->is_stmt) {