diff options
author | Nick Clifton <nickc@redhat.com> | 2011-04-11 08:13:22 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-04-11 08:13:22 +0000 |
commit | f64b2e8d60f277b705c96d4b4e585f5f7c847cc4 (patch) | |
tree | 29639613b366c813bcff4377013d63813eec5ffa /bfd/elf-bfd.h | |
parent | e10d6db33de978b0c64df4b8952fa590063581de (diff) | |
download | gdb-f64b2e8d60f277b705c96d4b4e585f5f7c847cc4.zip gdb-f64b2e8d60f277b705c96d4b4e585f5f7c847cc4.tar.gz gdb-f64b2e8d60f277b705c96d4b4e585f5f7c847cc4.tar.bz2 |
PR 10549
* elf-bfd.h (has_ifunc_symbols): Renamed to has_gnu_symbols.
(has_gnu_symbols): Renamed from has_ifunc_symbols.
* elf.c (_bfd_elf_set_osabi): Use new has_gnu_symbols name.
* elf32-arm.c (elf32_arm_add_symbol_hook): Set has_gnu_symbols
also if STB_GNU_UNIQUE symbol binding was seen.
* elf32-i386.c (elf_i386_add_symbol_hook): Likewise.
* elf32-ppc.c (ppc_elf_add_symbol_hook): Likewise.
* elf32-sparc.c (elf32_sparc_add_symbol_hook): Likewise.
* elf64-ppc.c (ppc64_elf_add_symbol_hook): Likewise.
* elf64-sparc.c (elf64_sparc_add_symbol_hook): Likewise.
* elf64-x86-64.c (elf_x86_64_add_symbol_hook): Likewise.
* ld-unique: New directory.
* ld-unique/unique.exp: New file: Run the UNIQUE tests.
* ld-unique/unique.s: New test file.
* ld-unique/unique_empty.s: Likewise.
* ld-unique/unique_shared.s: Likewise.
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index 21ec38f..844610d 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -1634,9 +1634,9 @@ struct elf_obj_tdata bfd_byte *build_id; /* True if the bfd contains symbols that have the STT_GNU_IFUNC - symbol type. Used to set the osabi field in the ELF header - structure. */ - bfd_boolean has_ifunc_symbols; + symbol type or STB_GNU_UNIQUE binding. Used to set the osabi + field in the ELF header structure. */ + bfd_boolean has_gnu_symbols; /* An identifier used to distinguish different target specific extensions to this structure. */ |