+2021-01-06 Alan Modra <amodra@gmail.com>
+
+ * elf32-score.c (s3_bfd_score_info_to_howto): Report an error
+ on unknown r_type.
+ * elf32-score7.c (s7_bfd_score_info_to_howto): Likewise.
+
2021-01-06 Alan Modra <amodra@gmail.com>
* config.bfd (sparc-*-solaris2*): Add sparc_elf32_vec.
/* Score backend functions. */
static bfd_boolean
-s3_bfd_score_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
+s3_bfd_score_info_to_howto (bfd *abfd,
arelent *bfd_reloc,
Elf_Internal_Rela *elf_reloc)
{
r_type = ELF32_R_TYPE (elf_reloc->r_info);
if (r_type >= ARRAY_SIZE (elf32_score_howto_table))
- return FALSE;
+ {
+ /* xgettext:c-format */
+ _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
+ abfd, r_type);
+ bfd_set_error (bfd_error_bad_value);
+ return FALSE;
+ }
bfd_reloc->howto = &elf32_score_howto_table[r_type];
return TRUE;
/* Score backend functions. */
bfd_boolean
-s7_bfd_score_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
+s7_bfd_score_info_to_howto (bfd *abfd,
arelent *bfd_reloc,
Elf_Internal_Rela *elf_reloc)
{
r_type = ELF32_R_TYPE (elf_reloc->r_info);
if (r_type >= ARRAY_SIZE (elf32_score_howto_table))
- return FALSE;
+ {
+ /* xgettext:c-format */
+ _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
+ abfd, r_type);
+ bfd_set_error (bfd_error_bad_value);
+ return FALSE;
+ }
bfd_reloc->howto = &elf32_score_howto_table[r_type];
return TRUE;