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 56e43410fcb..b8d011726ec 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-11-10 Doug Evans + + * source.c (select_source_symtab): Rewrite to use ALL_SYMTABS. + 2014-11-10 Doug Evans PR symtab/17564 diff --git a/gdb/source.c b/gdb/source.c index 19c25623758..1bb19c9d5fc 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; } }