diff options
author | Alan Modra <amodra@gmail.com> | 2022-12-18 13:04:13 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-12-18 19:11:32 +1030 |
commit | 20d8836e4ac6e416fda53152d453328934a2ea46 (patch) | |
tree | a2f1521f30f38d98b36cb59b3feb581ee2e3252e /bfd/bfd-in2.h | |
parent | 3bbdb440d0eb9333c969e87d75996011bcdc9aff (diff) | |
download | gdb-20d8836e4ac6e416fda53152d453328934a2ea46.zip gdb-20d8836e4ac6e416fda53152d453328934a2ea46.tar.gz gdb-20d8836e4ac6e416fda53152d453328934a2ea46.tar.bz2 |
Comment bfd_get_section_limit_octets and bfd_get_section_alloc_size
* bfd.c (bfd_get_section_limit_octets): Add comment.
(bfd_get_section_alloc_size): Likewise.
* libbfd.c (_bfd_generic_get_section_contents): Use
bfd_get_section_limit_octets.
* section.c (bfd_get_section_contents): Likewise.
* bfd-in2.h: Regenerate.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index f4d531f..053eccf 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -6946,6 +6946,8 @@ bfd_set_asymbol_name (asymbol *sy, const char *name) sy->name = name; } +/* For input sections return the original size on disk of the + section. For output sections return the current size. */ static inline bfd_size_type bfd_get_section_limit_octets (const bfd *abfd, const asection *sec) { @@ -6962,6 +6964,9 @@ bfd_get_section_limit (const bfd *abfd, const asection *sec) / bfd_octets_per_byte (abfd, sec)); } +/* For input sections return the larger of the current size and the + original size on disk of the section. For output sections return + the current size. */ static inline bfd_size_type bfd_get_section_alloc_size (const bfd *abfd, const asection *sec) { |