diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-07-25 23:35:55 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-07-25 23:35:55 +0000 |
commit | 80ac01168f15cb5b0e29f892b749bcd357ac9143 (patch) | |
tree | 1256f151f49036b0ac58c6838aae9111e433fe64 /gdb/mdebugread.c | |
parent | c8205c908ea3ec5f4429d37c003b8a50e426d28b (diff) | |
download | gdb-80ac01168f15cb5b0e29f892b749bcd357ac9143.zip gdb-80ac01168f15cb5b0e29f892b749bcd357ac9143.tar.gz gdb-80ac01168f15cb5b0e29f892b749bcd357ac9143.tar.bz2 |
Oops, forgot the parens.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index e5b3df0..54d4b6a 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -3190,9 +3190,11 @@ psymtab_to_symtab_1 (pst, filename) ; } else - /* Handle encoded stab line number. */ - valu += ANOFFSET (pst->section_offsets, SECT_OFF_TEXT); - record_line (current_subfile, sh.index, valu); + { + /* Handle encoded stab line number. */ + valu += ANOFFSET (pst->section_offsets, SECT_OFF_TEXT); + record_line (current_subfile, sh.index, valu); + } } else if (sh.st == stProc || sh.st == stStaticProc || sh.st == stStatic || sh.st == stEnd) |