diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2005-02-28 15:57:13 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2005-02-28 15:57:13 +0000 |
commit | af44c138410f6f30e1b01a5551ebbb36fd93682d (patch) | |
tree | 036587f724506f733fd502c0a01e7d39c60d3fa4 /bfd/elf-bfd.h | |
parent | e9e446227d91e4e0902ee7a3a1381b64eacfcd68 (diff) | |
download | gdb-af44c138410f6f30e1b01a5551ebbb36fd93682d.zip gdb-af44c138410f6f30e1b01a5551ebbb36fd93682d.tar.gz gdb-af44c138410f6f30e1b01a5551ebbb36fd93682d.tar.bz2 |
2005-02-28 H.J. Lu <hongjiu.lu@intel.com>
PR 757
* elf-bfd.h (_bfd_elf_merge_symbol): Add a pointer to unsigned
int.
* elf32-sh-symbian.c (sh_symbian_relocate_section): Pass NULL
to _bfd_elf_merge_symbol.
* elflink.c (_bfd_elf_merge_symbol): Use the pointer to
unsigned int to return the alignment of the old common symbol
in the dynamic object.
(_bfd_elf_add_default_symbol): Pass NULL to
_bfd_elf_merge_symbol.
(elf_link_add_object_symbols): Pass &old_alignment to
_bfd_elf_merge_symbol. Get the alignment of the new common
symbol in the dynamic object.
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index 4c93e80..fae6f31 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -1554,7 +1554,8 @@ extern bfd_boolean _bfd_elf_maybe_strip_eh_frame_hdr extern bfd_boolean _bfd_elf_merge_symbol (bfd *, struct bfd_link_info *, const char *, Elf_Internal_Sym *, - asection **, bfd_vma *, struct elf_link_hash_entry **, bfd_boolean *, + asection **, bfd_vma *, unsigned int *, + struct elf_link_hash_entry **, bfd_boolean *, bfd_boolean *, bfd_boolean *, bfd_boolean *); extern bfd_boolean _bfd_elf_add_default_symbol |