* coff-h8300.c (h8300_reloc16_extra_cases): Add bsr:16 -> bsr:8 to
authorJeff Law <law@redhat.com>
Mon, 3 Apr 2000 06:55:06 +0000 (06:55 +0000)
committerJeff Law <law@redhat.com>
Mon, 3 Apr 2000 06:55:06 +0000 (06:55 +0000)
        the R_PCRWORD_B case.

bfd/ChangeLog
bfd/coff-h8300.c

index 82f7eb544d85a63480b4a74c1601a3d468fa737c..2c4e461c7dce67bb8466a46ac93e96d0a1219eea 100644 (file)
@@ -1,3 +1,8 @@
+2000-04-03  Kazu Hirata  <kazu@hxi.com>
+
+       * coff-h8300.c (h8300_reloc16_extra_cases): Add bsr:16 -> bsr:8 to
+       the R_PCRWORD_B case.
+
 2000-03-31  Thomas de Lellis  <tdel@wrs.com>
 
        * srec.c : Set CHUNK size to 16 bytes to prevent download failures
index 3d54f20a926cf05f8b8508e39218825b1387c01f..1a4bcdd25b1a27f1656ca16a6679920ebc33e5e6 100644 (file)
@@ -901,6 +901,10 @@ h8300_reloc16_extra_cases (abfd, link_info, link_order, reloc, data, src_ptr,
          /* Write it.  */
          bfd_put_8 (abfd, tmp, data + dst_address - 2);
          break;
+       case 0x5c:
+         /* bsr:16 -> bsr:8 */
+         bfd_put_8 (abfd, 0x55, data + dst_address - 2);
+         break;
 
        default:
          abort ();