From: Jason Merrill Date: Fri, 4 Oct 1996 23:17:36 +0000 (+0000) Subject: DWARF X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7aecea252ca4693a47757b5630cc7f50353f27e7;p=gcc.git DWARF From-SVN: r12904 --- diff --git a/gcc/final.c b/gcc/final.c index d3e329efdb2..900f0bae87e 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 }