diff options
author | Alan Modra <amodra@gmail.com> | 2000-11-07 05:04:04 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-11-07 05:04:04 +0000 |
commit | d562d2fbf0e05c10019ac0f8bd76677a9284a76a (patch) | |
tree | 7a5b288e7e7957b4fce269ecf3dd2a530b1e8d60 /bfd | |
parent | 44f5c83ad358d6f9aa54d08ebe240c2e6b94fbf1 (diff) | |
download | gdb-d562d2fbf0e05c10019ac0f8bd76677a9284a76a.zip gdb-d562d2fbf0e05c10019ac0f8bd76677a9284a76a.tar.gz gdb-d562d2fbf0e05c10019ac0f8bd76677a9284a76a.tar.bz2 |
Fix for H8 ld problem.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/coff-h8300.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6dc20e5..be2098e 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2000-11-07 Alan Modra <alan@linuxcare.com.au> + + * coff-h8300.c (special): Adjust reloc address. + 2000-11-06 Steve Ellcey <sje@cup.hp.com> * archures.c (bfd_mach_ia64_elf64, bfd_mach_ia64_elf32): Add defines diff --git a/bfd/coff-h8300.c b/bfd/coff-h8300.c index 16d3aae..acde630 100644 --- a/bfd/coff-h8300.c +++ b/bfd/coff-h8300.c @@ -198,7 +198,7 @@ h8300_coff_link_hash_table_create (abfd) the code in reloc.c assumes that we can manipulate the targets of the pcrel branches. This isn't so, since the H8/300 can do relaxing, which means that the gap after the instruction may not be enough to - contain the offset required for the branch, so we have to use the only + contain the offset required for the branch, so we have to use only the addend until the final link. */ static bfd_reloc_status_type @@ -215,6 +215,8 @@ special (abfd, reloc_entry, symbol, data, input_section, output_bfd, if (output_bfd == (bfd *) NULL) return bfd_reloc_continue; + /* Adjust the reloc address to that in the output section. */ + reloc_entry->address += input_section->output_offset; return bfd_reloc_ok; } @@ -888,6 +890,7 @@ 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); |