From 51432cca1367d4ff610ed2d7c3fa64ba335eaa15 Mon Sep 17 00:00:00 2001 From: Carlos Eduardo Seo Date: Wed, 24 Oct 2007 13:25:16 +0000 Subject: * symtab.c (find_line_symtab): scan through psymtabs when exact_match is zero. --- gdb/symtab.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gdb/symtab.c') diff --git a/gdb/symtab.c b/gdb/symtab.c index eeddddd..966bd73 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -2281,12 +2281,20 @@ find_line_symtab (struct symtab *symtab, int line, int *index, int *exact_match) struct objfile *objfile; struct symtab *s; + struct partial_symtab *p; if (best_index >= 0) best = best_linetable->item[best_index].line; else best = 0; + ALL_PSYMTABS (objfile, p) + { + if (strcmp (symtab->filename, p->filename) != 0) + continue; + PSYMTAB_TO_SYMTAB (p); + } + ALL_SYMTABS (objfile, s) { struct linetable *l; -- cgit v1.1