diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9617de3f5bd327f48084c48fa4c4746263e0d3c5..537005bc6cb14d56b9ed87d9c046a420ec85b7fa 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2017-09-14 Eric Botcazou <ebotcazou@adacore.com> + + * dwarf2out.c (dwarf2out_source_line): Remove superfluous test. + 2017-09-14 Jakub Jelinek <jakub@redhat.com> PR target/81325 diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 980c4cced236e91565a2354f9f3a8175673546a0..6a4cd6027954f29b33a437ee6f90659f8f2c7b3a 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) {