From 712a2e6d225f2139be6954c948d8db2787071051 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Mon, 10 Nov 2014 16:49:44 -0800 Subject: [PATCH] source.c (select_source_symtab): Rewrite to use ALL_SYMTABS. gdb/ChangeLog: * source.c (select_source_symtab): Rewrite to use ALL_SYMTABS. --- gdb/ChangeLog | 4 ++++ gdb/source.c | 19 ++++++++----------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 56e4341..b8d0117 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2014-11-10 Doug Evans + * source.c (select_source_symtab): Rewrite to use ALL_SYMTABS. + +2014-11-10 Doug Evans + PR symtab/17564 * symtab.c (lookup_symbol_in_all_objfiles): Delete. (lookup_static_symbol): Move definition to new location and rewrite. diff --git a/gdb/source.c b/gdb/source.c index 19c2562..1bb19c9 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -291,19 +291,16 @@ select_source_symtab (struct symtab *s) current_source_line = 1; - ALL_OBJFILES (ofp) + ALL_SYMTABS (ofp, s) { - for (s = ofp->symtabs; s; s = s->next) - { - const char *name = s->filename; - int len = strlen (name); + const char *name = s->filename; + int len = strlen (name); - if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0 - || strcmp (name, "<>") == 0))) - { - current_source_pspace = current_program_space; - current_source_symtab = s; - } + if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0 + || strcmp (name, "<>") == 0))) + { + current_source_pspace = current_program_space; + current_source_symtab = s; } } -- 2.7.4