From: H.J. Lu Date: Sun, 14 Jun 2009 05:45:09 +0000 (+0000) Subject: 2009-06-13 H.J. Lu X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b7e29925c2f1d23df7fba3a7fa6175a5e60499c;p=binutils-gdb.git 2009-06-13 H.J. Lu * elf32-i386.c (elf_i386_check_relocs): Properly report local symbol for unhandled relocation against STT_GNU_IFUNC symbol. * elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6022765a4ad..05e93da97dd 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,10 @@ +2009-06-13 H.J. Lu + + * elf32-i386.c (elf_i386_check_relocs): Properly report + local symbol for unhandled relocation against STT_GNU_IFUNC + symbol. + * elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise. + 2009-06-13 H.J. Lu PR ld/10269 diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c index 273bd85939a..c6e62653ebb 100644 --- a/bfd/elf32-i386.c +++ b/bfd/elf32-i386.c @@ -1480,7 +1480,8 @@ elf_i386_check_relocs (bfd *abfd, (_("%B: relocation %s against STT_GNU_IFUNC " "symbol `%s' isn't handled by %s"), abfd, elf_howto_table[r_type].name, - h != NULL ? h->root.root.string : "a local symbol", + (h->root.root.string + ? h->root.root.string : "a local symbol"), __FUNCTION__); bfd_set_error (bfd_error_bad_value); return FALSE; diff --git a/bfd/elf64-x86-64.c b/bfd/elf64-x86-64.c index 2808906a46a..3cb4f062026 100644 --- a/bfd/elf64-x86-64.c +++ b/bfd/elf64-x86-64.c @@ -1263,7 +1263,8 @@ elf64_x86_64_check_relocs (bfd *abfd, struct bfd_link_info *info, (_("%B: relocation %s against STT_GNU_IFUNC " "symbol `%s' isn't handled by %s"), abfd, x86_64_elf_howto_table[r_type].name, - h != NULL ? h->root.root.string : "a local symbol", + (h->root.root.string + ? h->root.root.string : "a local symbol"), __FUNCTION__); bfd_set_error (bfd_error_bad_value); return FALSE;