diff options
author | Tom Tromey <tom@tromey.com> | 2018-11-24 09:00:42 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-01-09 18:28:15 -0700 |
commit | 592553c46959c98bf5981ad245d0fbb97f373d2a (patch) | |
tree | 066ee980d8f02f73abcaea2a55d62d8a493de575 /gdb/coffread.c | |
parent | 5325b9bf1ee283c40f076334eb3ea66e1f0a6ade (diff) | |
download | gdb-592553c46959c98bf5981ad245d0fbb97f373d2a.zip gdb-592553c46959c98bf5981ad245d0fbb97f373d2a.tar.gz gdb-592553c46959c98bf5981ad245d0fbb97f373d2a.tar.bz2 |
Remove ALL_OBJFILE_COMPUNITS
This removes ALL_OBJFILE_COMPUNITS, replacing its uses with ranged for
loops. Because ALL_COMPUNITS is also updated, in some places a
declaration must be deleted to avoid shadowing.
gdb/ChangeLog
2019-01-09 Tom Tromey <tom@tromey.com>
* source.c (select_source_symtab)
(forget_cached_source_info_for_objfile): Remove declaration.
* mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Remove
declaration.
* maint.c (count_symtabs_and_blocks): Remove declaration.
* cp-support.c (add_symbol_overload_list_qualified): Remove
declaration.
* coffread.c (coff_symtab_read): Remove declaration.
* symtab.c (lookup_symbol_in_objfile_symtabs)
(basic_lookup_transparent_type_1): Use objfile_compunits.
(lookup_objfile_from_block, find_pc_sect_compunit_symtab)
(info_sources_command, search_symbols)
(default_collect_symbol_completion_matches_break_on)
(make_source_files_completion_list): Remove declaration.
* ada-lang.c (add_nonlocal_symbols): Use objfile_compunits.
(ada_collect_symbol_completion_matches)
(ada_add_global_exceptions): Remove declaration.
* linespec.c (iterate_over_all_matching_symtabs): Use
objfile_compunits.
* objfiles.h (ALL_OBJFILE_COMPUNITS): Remove.
(class objfile_compunits): New.
(ALL_COMPUNITS): Use objfile_compunits.
* symmisc.c (print_objfile_statistics, maintenance_info_symtabs)
(maintenance_check_symtabs, maintenance_info_line_tables): Use
objfile_compunits.
* objfiles.c (objfile_relocate1): Use objfile_compunits.
Diffstat (limited to 'gdb/coffread.c')
-rw-r--r-- | gdb/coffread.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/coffread.c b/gdb/coffread.c index e6ca7ed..2a86489 100644 --- a/gdb/coffread.c +++ b/gdb/coffread.c @@ -1203,7 +1203,6 @@ coff_symtab_read (minimal_symbol_reader &reader, /* Patch up any opaque types (references to types that are not defined in the file where they are referenced, e.g. "struct foo *bar"). */ { - struct compunit_symtab *cu; struct symtab *s; ALL_OBJFILE_FILETABS (objfile, cu, s) |