* dwarf2out.c (dwarf2out_source_line): Remove superfluous test.
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 14 Sep 2017 08:33:20 +0000 (08:33 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Thu, 14 Sep 2017 08:33:20 +0000 (08:33 +0000)
From-SVN: r252753

gcc/ChangeLog
gcc/dwarf2out.c

index 9617de3..537005b 100644 (file)
@@ -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
index 980c4cc..6a4cd60 100644 (file)
@@ -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)
        {