diff options
author | Jason Merrill <merrill@gnu.org> | 1996-10-04 23:17:36 +0000 |
---|---|---|
committer | Jason Merrill <merrill@gnu.org> | 1996-10-04 23:17:36 +0000 |
commit | 7aecea252ca4693a47757b5630cc7f50353f27e7 (patch) | |
tree | 6693829f9332a8ed9a82fa64bf3774c85118917f /gcc/final.c | |
parent | d7248bff7236556ac8c05e332ee464d467c87a41 (diff) | |
download | gcc-7aecea252ca4693a47757b5630cc7f50353f27e7.zip gcc-7aecea252ca4693a47757b5630cc7f50353f27e7.tar.gz gcc-7aecea252ca4693a47757b5630cc7f50353f27e7.tar.bz2 |
DWARF
From-SVN: r12904
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c index d3e329e..900f0ba 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1402,7 +1402,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) ASM_OUTPUT_INTERNAL_LABEL (file, "LBB", next_block_index); #endif #ifdef DWARF_DEBUGGING_INFO - if (write_symbols == DWARF_DEBUG && block_depth > 1) + if (write_symbols == DWARF_DEBUG) dwarfout_begin_block (next_block_index); #endif @@ -1438,7 +1438,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) pending_blocks[block_depth]); #endif #ifdef DWARF_DEBUGGING_INFO - if (write_symbols == DWARF_DEBUG && block_depth >= 1) + if (write_symbols == DWARF_DEBUG && block_depth >= 0) dwarfout_end_block (pending_blocks[block_depth]); #endif } |