diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/elf32-arm.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 39f5829..ad5228e 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -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> diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c index e9157b2..826dd7e 100644 --- a/bfd/elf32-arm.c +++ b/bfd/elf32-arm.c @@ -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); |