aboutsummaryrefslogtreecommitdiff
path: root/gdb/stabsread.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-01-16 07:18:58 -0700
committerTom Tromey <tom@tromey.com>2019-01-17 15:43:37 -0700
commit7932255de56fb99836b2e712e7dbcfdd5e1f1309 (patch)
tree760e3e52755717ebbe3f4092ff37e425ff062687 /gdb/stabsread.c
parent604b1bfb46e62d561698397cb5499b487eb0db34 (diff)
downloadgdb-7932255de56fb99836b2e712e7dbcfdd5e1f1309.zip
gdb-7932255de56fb99836b2e712e7dbcfdd5e1f1309.tar.gz
gdb-7932255de56fb99836b2e712e7dbcfdd5e1f1309.tar.bz2
Make minimal symbol range adapter a method on objfile
This removes class objfile_msymbols in favor of a method on the objfile. 2019-01-16 Tom Tromey <tom@tromey.com> * objfiles.h (struct minimal_symbol_iterator): Rename. Move earlier. (struct objfile) <msymbols_range>: Move from top level. <msymbols>: New method. (class objfile_msymbols): Remove. * symtab.c (default_collect_symbol_completion_matches_break_on): Update. * symmisc.c (dump_msymbols): Update. * stabsread.c (scan_file_globals): Update. * objc-lang.c (info_selectors_command, info_classes_command) (find_methods): Update. * minsyms.c (find_solib_trampoline_target): Update. * hppa-tdep.c (hppa_lookup_stub_minimal_symbol): Update. * coffread.c (coff_symfile_read): Update. * ada-lang.c (ada_lookup_simple_minsym) (ada_collect_symbol_completion_matches): Update.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r--gdb/stabsread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c
index daba7cb..fc41c8f 100644
--- a/gdb/stabsread.c
+++ b/gdb/stabsread.c
@@ -4598,7 +4598,7 @@ scan_file_globals (struct objfile *objfile)
if (hash >= HASHSIZE)
return;
- for (minimal_symbol *msymbol : objfile_msymbols (resolve_objfile))
+ for (minimal_symbol *msymbol : resolve_objfile->msymbols ())
{
QUIT;