aboutsummaryrefslogtreecommitdiff
path: root/gdb/symmisc.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-04-10 10:50:09 -0600
committerTom Tromey <tom@tromey.com>2023-05-07 12:44:17 -0600
commit9ed8433a04bf0430e2da3cd44c18667859782410 (patch)
tree035e5240911b21168ddd485946571aa7cd51a5d5 /gdb/symmisc.c
parent372b4a048a2719c746bbb70bdbed257df405a4dc (diff)
downloadgdb-9ed8433a04bf0430e2da3cd44c18667859782410.zip
gdb-9ed8433a04bf0430e2da3cd44c18667859782410.tar.gz
gdb-9ed8433a04bf0430e2da3cd44c18667859782410.tar.bz2
Rename objfile::sections
I think objfile::sections makes sense as the name of the method to iterate over an objfile's sections, so this patch renames the existing field to objfile::sections_start in preparation for that.
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r--gdb/symmisc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c
index 4b68f2b..ee764a5 100644
--- a/gdb/symmisc.c
+++ b/gdb/symmisc.c
@@ -212,7 +212,7 @@ dump_msymbols (struct objfile *objfile, struct ui_file *outfile)
bfd_section_name (section->the_bfd_section));
else
gdb_printf (outfile, " spurious section %ld",
- (long) (section - objfile->sections));
+ (long) (section - objfile->sections_start));
}
if (msymbol->demangled_name () != NULL)
{