From 7aecea252ca4693a47757b5630cc7f50353f27e7 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Fri, 4 Oct 1996 23:17:36 +0000 Subject: [PATCH] DWARF From-SVN: r12904 --- gcc/final.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } -- 2.30.2