Removed spurious error return.
authorNick Clifton <nickc@redhat.com>
Wed, 10 Sep 1997 22:15:31 +0000 (22:15 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 10 Sep 1997 22:15:31 +0000 (22:15 +0000)
bfd/ChangeLog
bfd/elf32-v850.c

index 6c75123a38bf8aaa0ad6b3d63d5973d5526afdce..03524259525ed31b36c0dfb66d9e341ca24ce1f8 100644 (file)
@@ -1,3 +1,7 @@
+Wed Sep 10 15:17:25 1997  Nick Clifton  <nickc@cygnus.com>
+
+       * elf32-v850.c (v850_elf_reloc): Remove spurious error message.
+
 Wed Sep 10 11:17:50 1997  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * archures.c (bfd_default_scan): Use strcasecmp.
index 92cee14f51614bd27d71bbbbf2358ee69b06758f..265c07c3ac49b49bd259ec752d3a2e663ca421a4 100644 (file)
@@ -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;
 
This page took 0.077671 seconds and 4 git commands to generate.