aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarf2out.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2017-09-14 08:33:20 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2017-09-14 08:33:20 +0000
commitb24cbb634a1454dd283c7d40afa4c0ec6f570e9e (patch)
tree04056e913e5507abd4a7700b630a2dfcbde81301 /gcc/dwarf2out.c
parentc5f597633467c2fc0fa80afa19c99f049fac8466 (diff)
downloadgcc-b24cbb634a1454dd283c7d40afa4c0ec6f570e9e.zip
gcc-b24cbb634a1454dd283c7d40afa4c0ec6f570e9e.tar.gz
gcc-b24cbb634a1454dd283c7d40afa4c0ec6f570e9e.tar.bz2
* dwarf2out.c (dwarf2out_source_line): Remove superfluous test.
From-SVN: r252753
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r--gcc/dwarf2out.c5
1 files changed, 1 insertions, 4 deletions
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)
{