diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elflink.c | 12 |
2 files changed, 7 insertions, 10 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 3610948..76c8a5c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2015-10-01 Alan Modra <amodra@gmail.com> + + PR ld/19013 + * elflink.c (_bfd_elf_merge_sections): Revert last change. + 2015-09-30 H.J. Lu <hongjiu.lu@intel.com> PR ld/19031 diff --git a/bfd/elflink.c b/bfd/elflink.c index 70c231b..90af6cf 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -6818,23 +6818,15 @@ _bfd_elf_merge_sections (bfd *obfd, struct bfd_link_info *info) { bfd *ibfd; asection *sec; - const struct elf_backend_data *bed; if (!is_elf_hash_table (info->hash)) return FALSE; - bed = get_elf_backend_data (obfd); for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next) if ((ibfd->flags & DYNAMIC) == 0 && bfd_get_flavour (ibfd) == bfd_target_elf_flavour - && (elf_elfheader (ibfd)->e_ident[EI_CLASS] == bed->s->elfclass) - && (bed->elf_machine_code == elf_elfheader (ibfd)->e_machine - || (bed->elf_machine_alt1 != 0 - && (bed->elf_machine_alt1 - == elf_elfheader (ibfd)->e_machine)) - || (bed->elf_machine_alt2 != 0 - && (bed->elf_machine_alt2 - == elf_elfheader (ibfd)->e_machine)))) + && (elf_elfheader (ibfd)->e_ident[EI_CLASS] + == get_elf_backend_data (obfd)->s->elfclass)) for (sec = ibfd->sections; sec != NULL; sec = sec->next) if ((sec->flags & SEC_MERGE) != 0 && !bfd_is_abs_section (sec->output_section)) |