From edf04c37e96b36940b86a3d4c8b9b28c200e2231 Mon Sep 17 00:00:00 2001 From: ebotcazou Date: Thu, 14 Sep 2017 08:33:20 +0000 Subject: [PATCH] * dwarf2out.c (dwarf2out_source_line): Remove superfluous test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@252753 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/dwarf2out.c | 5 +---- 2 files changed, 5 insertions(+), 4 deletions(-) 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) { -- 2.11.4.GIT