diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/dwarf2out.c | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9617de3..537005b 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 980c4cc..6a4cd60 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) { |
