projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62a4b48
)
* coff-h8300.c (h8300_reloc16_extra_cases): Add bsr:16 -> bsr:8 to
author
Jeff Law
<law@redhat.com>
Mon, 3 Apr 2000 06:55:06 +0000
(06:55 +0000)
committer
Jeff Law
<law@redhat.com>
Mon, 3 Apr 2000 06:55:06 +0000
(06:55 +0000)
the R_PCRWORD_B case.
bfd/ChangeLog
patch
|
blob
|
history
bfd/coff-h8300.c
patch
|
blob
|
history
diff --git
a/bfd/ChangeLog
b/bfd/ChangeLog
index 82f7eb544d85a63480b4a74c1601a3d468fa737c..2c4e461c7dce67bb8466a46ac93e96d0a1219eea 100644
(file)
--- a/
bfd/ChangeLog
+++ b/
bfd/ChangeLog
@@
-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
diff --git
a/bfd/coff-h8300.c
b/bfd/coff-h8300.c
index 3d54f20a926cf05f8b8508e39218825b1387c01f..1a4bcdd25b1a27f1656ca16a6679920ebc33e5e6 100644
(file)
--- a/
bfd/coff-h8300.c
+++ b/
bfd/coff-h8300.c
@@
-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 ();