diff options
author | Tom Tromey <tom@tromey.com> | 2021-03-20 17:23:40 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-03-20 17:23:41 -0600 |
commit | a8ad4f3c17727fe2c499a9a8f775ccfe877326ac (patch) | |
tree | 848ea6efadcd795524e4bf124c944cff3aa6eb97 /gdb/dwarf2 | |
parent | 701823751bec1bbf2f1c96463994f894d33d2238 (diff) | |
download | gdb-a8ad4f3c17727fe2c499a9a8f775ccfe877326ac.zip gdb-a8ad4f3c17727fe2c499a9a8f775ccfe877326ac.tar.gz gdb-a8ad4f3c17727fe2c499a9a8f775ccfe877326ac.tar.bz2 |
Change objfile_has_partial_symbols to a method
This changes objfile_has_partial_symbols to be a method on objfile.
There are some other functions that could benefit from this sort of
change, but this was the only one that was relevant to this series.
gdb/ChangeLog
2021-03-20 Tom Tromey <tom@tromey.com>
* symfile.c (read_symbols): Update.
* objfiles.h (struct objfile) <has_partial_symbols>: New method.
(objfile_has_partial_symbols): Don't declare.
* objfiles.c (objfile::has_partial_symbols): Rename from
objfile_has_partial_symbols.
(objfile_has_symbols, have_partial_symbols): Update.
* elfread.c (elf_symfile_read): Update.
* dwarf2/read.c (dwarf2_has_info): Update.
* coffread.c (coff_symfile_read): Update.
Diffstat (limited to 'gdb/dwarf2')
-rw-r--r-- | gdb/dwarf2/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index 4d6d87b..dd2abd3 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -1954,7 +1954,7 @@ dwarf2_has_info (struct objfile *objfile, /* We can share a "dwarf2_per_bfd" with other objfiles if the BFD doesn't require relocations and if there aren't partial symbols from some other reader. */ - if (!objfile_has_partial_symbols (objfile) + if (!objfile->has_partial_symbols () && !gdb_bfd_requires_relocations (objfile->obfd)) { /* See if one has been created for this BFD yet. */ |