diff options
author | H.J. Lu <hjl@lucon.org> | 2006-03-17 18:37:21 +0000 |
---|---|---|
committer | H.J. Lu <hjl@lucon.org> | 2006-03-17 18:37:21 +0000 |
commit | a2e310d2dbf2cb14474c3a169c35852a00a278cc (patch) | |
tree | c453cf6b9e5503053450925fc95572ad0868b600 /bfd | |
parent | 23523fa6b5f19612d1c4e6b86292a68629ca43a8 (diff) | |
download | gdb-a2e310d2dbf2cb14474c3a169c35852a00a278cc.tar.gz |
2006-03-17 Daniel Jacobowitz <dan@codesourcery.com>
PR ld/2462
* elflink.c (bfd_elf_final_link): Remove
bed->elf_backend_emit_relocs from emit_relocs.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elflink.c | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 794f18f1226..7a1280c4241 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2006-03-17 Daniel Jacobowitz <dan@codesourcery.com> + + PR ld/2462 + * elflink.c (bfd_elf_final_link): Remove + bed->elf_backend_emit_relocs from emit_relocs. + 2006-03-17 Alexandre Oliva <aoliva@redhat.com> * elf32-ppc.c (ppc_elf_relocate_section): Copy addend from diff --git a/bfd/elflink.c b/bfd/elflink.c index 5466e0956a4..f0a0e83cada 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -7782,8 +7782,7 @@ bfd_elf_final_link (bfd *abfd, struct bfd_link_info *info) dynobj = elf_hash_table (info)->dynobj; emit_relocs = (info->relocatable - || info->emitrelocations - || bed->elf_backend_emit_relocs); + || info->emitrelocations); finfo.info = info; finfo.output_bfd = abfd; |