diff options
author | Alan Modra <amodra@gmail.com> | 2023-05-18 17:43:14 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-05-18 18:01:49 +0930 |
commit | 204d627e83f440dc62871139a688b58c42149f59 (patch) | |
tree | 917eb57ca0145236d2fe0c4cc286462243df68af /bfd/coffcode.h | |
parent | 92240b19576f2b71719b952f150c8a781e6e5398 (diff) | |
download | gdb-204d627e83f440dc62871139a688b58c42149f59.zip gdb-204d627e83f440dc62871139a688b58c42149f59.tar.gz gdb-204d627e83f440dc62871139a688b58c42149f59.tar.bz2 |
Re: Add section caches to coff_data_type
Another thing, section target_index is renumbered in
coff_compute_section_file_positions and _bfd_xcoff_bfd_final_link. I
don't know that there is currently any way that the output bfd
section_by_target_index could be populated before this point but
clear them out so no one need worry about it.
* coffcode.h (coff_compute_section_file_positions): Clear
section_by_target_index hash table when changing target_index.
(_bfd_xcoff_bfd_final_link): Likewise.
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r-- | bfd/coffcode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 777515e..2d42982 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -3067,6 +3067,9 @@ coff_compute_section_file_positions (bfd * abfd) sofar += bfd_coff_scnhsz (abfd); #endif + if (coff_data (abfd)->section_by_target_index) + htab_empty (coff_data (abfd)->section_by_target_index); + #ifdef COFF_IMAGE_WITH_PE { /* PE requires the sections to be in memory order when listed in |