Commit 7aecea25 by Jason Merrill

DWARF

From-SVN: r12904
parent d7248bff
...@@ -1402,7 +1402,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) ...@@ -1402,7 +1402,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
ASM_OUTPUT_INTERNAL_LABEL (file, "LBB", next_block_index); ASM_OUTPUT_INTERNAL_LABEL (file, "LBB", next_block_index);
#endif #endif
#ifdef DWARF_DEBUGGING_INFO #ifdef DWARF_DEBUGGING_INFO
if (write_symbols == DWARF_DEBUG && block_depth > 1) if (write_symbols == DWARF_DEBUG)
dwarfout_begin_block (next_block_index); dwarfout_begin_block (next_block_index);
#endif #endif
...@@ -1438,7 +1438,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) ...@@ -1438,7 +1438,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
pending_blocks[block_depth]); pending_blocks[block_depth]);
#endif #endif
#ifdef DWARF_DEBUGGING_INFO #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]); dwarfout_end_block (pending_blocks[block_depth]);
#endif #endif
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment