From: Elena Zannoni Date: Wed, 5 Sep 2001 02:02:44 +0000 (+0000) Subject: 2001-09-04 Elena Zannoni X-Git-Tag: cygnus_cvs_20020108_pre~1445 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=16db60558d689464295476828eb3171eb72d0f57;p=external%2Fbinutils.git 2001-09-04 Elena Zannoni From Daniel Jacobowitz * mdebugread.c (psymtab_to_symtab_1): Handle N_SO stabs without a name specially. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fb54756..6fe893a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2001-09-04 Elena Zannoni + + From Daniel Jacobowitz + * mdebugread.c (psymtab_to_symtab_1): Handle N_SO stabs without + a name specially. + 2001-09-01 Mark Kettenis Make GDB use libiberty regex implementation. diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index aab357e..6d1078a 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -3210,10 +3210,11 @@ psymtab_to_symtab_1 (struct partial_symtab *pst, char *filename) void (*swap_sym_in) (bfd *, PTR, SYMR *); void (*swap_pdr_in) (bfd *, PTR, PDR *); int i; - struct symtab *st; + struct symtab *st = NULL; FDR *fh; struct linetable *lines; CORE_ADDR lowest_pdr_addr = 0; + int last_symtab_ended = 0; if (pst->readin) return; @@ -3319,8 +3320,30 @@ psymtab_to_symtab_1 (struct partial_symtab *pst, char *filename) complaining about them. */ if (type_code & N_STAB) { - process_one_symbol (type_code, 0, valu, name, - pst->section_offsets, pst->objfile); + /* If we found a trailing N_SO with no name, process + it here instead of in process_one_symbol, so we + can keep a handle to its symtab. The symtab + would otherwise be ended twice, once in + process_one_symbol, and once after this loop. */ + if (type_code == N_SO + && last_source_file + && previous_stab_code != (unsigned char) N_SO + && *name == '\000') + { + valu += ANOFFSET (pst->section_offsets, + SECT_OFF_TEXT (pst->objfile)); + previous_stab_code = N_SO; + st = end_symtab (valu, pst->objfile, + SECT_OFF_TEXT (pst->objfile)); + end_stabs (); + last_symtab_ended = 1; + } + else + { + last_symtab_ended = 0; + process_one_symbol (type_code, 0, valu, name, + pst->section_offsets, pst->objfile); + } } /* Similarly a hack. */ else if (name[0] == '#') @@ -3369,8 +3392,12 @@ psymtab_to_symtab_1 (struct partial_symtab *pst, char *filename) else complain (&stab_unknown_complaint, name); } - st = end_symtab (pst->texthigh, pst->objfile, SECT_OFF_TEXT (pst->objfile)); - end_stabs (); + + if (! last_symtab_ended) + { + st = end_symtab (pst->texthigh, pst->objfile, SECT_OFF_TEXT (pst->objfile)); + end_stabs (); + } /* Sort the symbol table now, we are done adding symbols to it. We must do this before parse_procedure calls lookup_symbol. */