diff options
author | Dan Gissel <dgisselq@ieee.org> | 2016-03-11 09:17:28 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-03-11 09:17:28 +0000 |
commit | 37b01f6a13f21f274bf9758ecbf5d9efd6153444 (patch) | |
tree | 5e877ed6002a0f657aad14edad65e2faefa4efb4 /bfd/section.c | |
parent | aa667814c7c9b77822d2ac2152dde4c01527da70 (diff) | |
download | gdb-37b01f6a13f21f274bf9758ecbf5d9efd6153444.zip gdb-37b01f6a13f21f274bf9758ecbf5d9efd6153444.tar.gz gdb-37b01f6a13f21f274bf9758ecbf5d9efd6153444.tar.bz2 |
Fix some places where octet to byte conversions are needed.
PR 19713
* elf.c (_bfd_elf_section_offset): Ensure that the returned offset
uses bytes not octets.
* elflink.c (resolve_section): Likewise.
Add a bfd parameter.
(eval_section): Pass the input_bfd to resolve_section.
(bfd_elf_perform_complex_relocation): Convert byte offset to
octets before read and writing values.
(elf_link_input_bfd): Add byte to octet conversions.
(elf_reloc_link_order): Likewise.
(elf_fixup_link_order): Likewise.
(bfd_elf_final_link): Likewise.
* reloc.c (_bfd_final_link_relocate): Likewise.
* syms.c (_bfd_stab_section_find_nearest_line): Likewise.
Diffstat (limited to 'bfd/section.c')
-rw-r--r-- | bfd/section.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/section.c b/bfd/section.c index 85dc141..f0a66b2 100644 --- a/bfd/section.c +++ b/bfd/section.c @@ -430,7 +430,7 @@ CODE_FRAGMENT . information. *} . bfd_vma lma; . -. {* The size of the section in octets, as it will be output. +. {* The size of the section in *octets*, as it will be output. . Contains a value even if the section has no contents (e.g., the . size of <<.bss>>). *} . bfd_size_type size; |