From: Nick Clifton Date: Wed, 10 Sep 1997 22:15:31 +0000 (+0000) Subject: Removed spurious error return. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=43898c918f3ed9bd3391c5f63ed1e29beb778c4c;p=deliverable%2Fbinutils-gdb.git Removed spurious error return. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6c75123a38..0352425952 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +Wed Sep 10 15:17:25 1997 Nick Clifton + + * elf32-v850.c (v850_elf_reloc): Remove spurious error message. + Wed Sep 10 11:17:50 1997 Andrew Cagney * archures.c (bfd_default_scan): Use strcasecmp. diff --git a/bfd/elf32-v850.c b/bfd/elf32-v850.c index 92cee14f51..265c07c3ac 100644 --- a/bfd/elf32-v850.c +++ b/bfd/elf32-v850.c @@ -707,8 +707,6 @@ v850_elf_reloc (abfd, reloc, symbol, data, isection, obfd, err) case R_V850_LO16: relocation += (short)bfd_get_16 (abfd, (bfd_byte *) data + reloc->address); /* Do not complain if value has top bit set, as this has been anticipated. */ - if ((unsigned long)relocation > 0xffff) - return bfd_reloc_overflow; bfd_put_16 (abfd, relocation, (bfd_byte *)data + reloc->address); return bfd_reloc_ok;