aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-05-27 16:29:52 -0600
committerTom Tromey <tom@tromey.com>2022-04-12 09:31:16 -0600
commitfca9326e27b7b41847565d7afcd9070144256306 (patch)
tree3d659a07f6226ce823d04867817145557545bd1c /gdb
parent88a981942d16cbf4a75581aa72744e8d778bcd38 (diff)
downloadgdb-fca9326e27b7b41847565d7afcd9070144256306.zip
gdb-fca9326e27b7b41847565d7afcd9070144256306.tar.gz
gdb-fca9326e27b7b41847565d7afcd9070144256306.tar.bz2
Change parameters to write_address_map
To support the removal of partial symtabs from the DWARF index writer, this makes a small change to have write_address_map accept the address map as a parameter, rather than assuming it always comes from the per-BFD object.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/dwarf2/index-write.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/dwarf2/index-write.c b/gdb/dwarf2/index-write.c
index 958fc9b..509dde4 100644
--- a/gdb/dwarf2/index-write.c
+++ b/gdb/dwarf2/index-write.c
@@ -473,13 +473,12 @@ addrmap_index_data::operator() (CORE_ADDR start_addr, void *obj)
in the index file. */
static void
-write_address_map (dwarf2_per_bfd *per_bfd, data_buf &addr_vec,
+write_address_map (struct addrmap *addrmap, data_buf &addr_vec,
cu_index_map &cu_index_htab)
{
struct addrmap_index_data addrmap_index_data (addr_vec, cu_index_htab);
- addrmap_foreach (per_bfd->partial_symtabs->psymtabs_addrmap,
- addrmap_index_data);
+ addrmap_foreach (addrmap, addrmap_index_data);
/* It's highly unlikely the last entry (end address = 0xff...ff)
is valid, but we should still handle it.
@@ -1378,7 +1377,8 @@ write_gdbindex (dwarf2_per_objfile *per_objfile, FILE *out_file,
/* Dump the address map. */
data_buf addr_vec;
- write_address_map (per_objfile->per_bfd, addr_vec, cu_index_htab);
+ write_address_map (per_objfile->per_bfd->partial_symtabs->psymtabs_addrmap,
+ addr_vec, cu_index_htab);
/* Now that we've processed all symbols we can shrink their cu_indices
lists. */