diff options
author | Nick Clifton <nickc@redhat.com> | 2018-02-27 12:16:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2018-02-27 12:16:04 +0000 |
commit | e8f5af786c7665141f6644998b8c427ad466d474 (patch) | |
tree | d0130ae5b9717622ba39b91b4847f9c6a9f1c654 /bfd/elf64-sh64.c | |
parent | f3185997ac0951edac802e29df03dfc0844fda34 (diff) | |
download | gdb-e8f5af786c7665141f6644998b8c427ad466d474.zip gdb-e8f5af786c7665141f6644998b8c427ad466d474.tar.gz gdb-e8f5af786c7665141f6644998b8c427ad466d474.tar.bz2 |
Use standardized error message for unrecognized relocs.
bfd * aout-cris.c (swap_ext_reloc_out): Standadize error/warning
message.
* elf-hppa.h (elf_hppa_info_to_howto_rel): Likewise.
* elf32-i386.c (elf_i386_reloc_type_lookup): Likewise.
* elf32-xtensa.c (elf_xtensa_reloc_type_lookup): Likewise.
* elf64-ppc.c (ppc64_elf_reloc_type_lookup): Likewise.
* elf64-s390.c (elf_s390_reloc_type_lookup): Likewise.
* elf64-sh64.c (sh_elf64_info_to_howto): Likewise.
* elfxx-ia64.c (ia64_elf_reloc_type_lookup): Likewise.
* elfxx-sparc.c (_bfd_sparc_elf_reloc_type_lookup): Likewise.
* elfxx-tilegx.c (tilegx_reloc_type_lookup): Likewise.
Diffstat (limited to 'bfd/elf64-sh64.c')
-rw-r--r-- | bfd/elf64-sh64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf64-sh64.c b/bfd/elf64-sh64.c index d8dca7f..b771759 100644 --- a/bfd/elf64-sh64.c +++ b/bfd/elf64-sh64.c @@ -1411,7 +1411,7 @@ sh_elf64_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *cache_ptr, if (r > (unsigned int) R_SH_64_PCREL) { /* xgettext:c-format */ - _bfd_error_handler (_("%pB: invalid relocation type %d"), abfd, r); + _bfd_error_handler (_("%pB: unsupported relocation type %#x"), abfd, r); bfd_set_error (bfd_error_bad_value); return FALSE; } |