* elf32-arm.c (elf32_arm_final_link_relocate): Correct return value.

This commit is contained in:
Alan Modra 2012-06-18 00:46:28 +00:00
parent 0962ddd7cc
commit 466911340d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-06-18 John Szakmeister <john@szakmeister.net>
* elf32-arm.c (elf32_arm_final_link_relocate): Correct return value.
2012-06-17 Hans-Peter Nilsson <hp@axis.com>
* elf32-cris.c (cris_elf_relocate_section): <R_CRIS_32_IE>

View File

@ -9664,7 +9664,7 @@ elf32_arm_final_link_relocate (reloc_howto_type * howto,
(_("%B(%A+0x%lx): R_ARM_TLS_LE32 relocation not permitted in shared object"),
input_bfd, input_section,
(long) rel->r_offset, howto->name);
return (bfd_reloc_status_type) FALSE;
return bfd_reloc_notsupported;
}
else
value = tpoff (info, value);