diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-04 21:38:54 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-04 21:38:54 +0000 |
commit | cd7c2dad795ef7abc47d815824e252d508bfbf1b (patch) | |
tree | 1f706154c4360e6e624f3cb3be4ee8a65b3ed59a /gcc/final.c | |
parent | d7e12e9e96e44ef4134f5f346309471df2b75ec0 (diff) | |
download | gcc-cd7c2dad795ef7abc47d815824e252d508bfbf1b.tar.gz |
(final_scan_insn): Pass new arg, block num, to sdbout_end_block.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6965 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c index c79c2b65f38..c4f4d54d91f 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -1398,7 +1398,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes) #endif #ifdef SDB_DEBUGGING_INFO if (write_symbols == SDB_DEBUG && block_depth >= 0) - sdbout_end_block (file, last_linenum); + sdbout_end_block (file, last_linenum, pending_blocks[block_depth]); #endif #ifdef DWARF_DEBUGGING_INFO if (write_symbols == DWARF_DEBUG && block_depth >= 1) |