mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 11:04:18 +08:00
bfd/
* elf64-ppc.c (ppc64_elf_relocate_section): Set "relocation" for .TOC. after relocatable check. gas/ * config/tc-ppc.c (ppc_elf_adjust_symtab): Don't make .TOC. weak.
This commit is contained in:
parent
9b17b5e3d7
commit
f40da81ba5
@ -1,3 +1,8 @@
|
||||
2013-07-02 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* elf64-ppc.c (ppc64_elf_relocate_section): Set "relocation" for
|
||||
.TOC. after relocatable check.
|
||||
|
||||
2013-07-01 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* elf64-ppc.h (ppc64_elf_toc): Delete.
|
||||
|
@ -12467,13 +12467,6 @@ ppc64_elf_relocate_section (bfd *output_bfd,
|
||||
}
|
||||
}
|
||||
}
|
||||
if (h_elf == htab->elf.hgot)
|
||||
{
|
||||
relocation = (TOCstart
|
||||
+ htab->stub_group[input_section->id].toc_off);
|
||||
sec = bfd_abs_section_ptr;
|
||||
unresolved_reloc = FALSE;
|
||||
}
|
||||
}
|
||||
h = (struct ppc_link_hash_entry *) h_elf;
|
||||
|
||||
@ -12486,6 +12479,14 @@ ppc64_elf_relocate_section (bfd *output_bfd,
|
||||
if (info->relocatable)
|
||||
continue;
|
||||
|
||||
if (h != NULL && &h->elf == htab->elf.hgot)
|
||||
{
|
||||
relocation = (TOCstart
|
||||
+ htab->stub_group[input_section->id].toc_off);
|
||||
sec = bfd_abs_section_ptr;
|
||||
unresolved_reloc = FALSE;
|
||||
}
|
||||
|
||||
/* TLS optimizations. Replace instruction sequences and relocs
|
||||
based on information we collected in tls_optimize. We edit
|
||||
RELOCS so that --emit-relocs will output something sensible
|
||||
|
@ -1,3 +1,7 @@
|
||||
2013-07-02 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* config/tc-ppc.c (ppc_elf_adjust_symtab): Don't make .TOC. weak.
|
||||
|
||||
2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
|
||||
|
||||
* doc/as.texinfo (Overview): Remove @samp from MIPS ISA names.
|
||||
|
@ -2318,8 +2318,6 @@ ppc_elf_adjust_symtab (void)
|
||||
asymbol *bsym = symbol_get_bfdsym (symp);
|
||||
if ((bsym->flags & BSF_KEEP) == 0)
|
||||
symbol_remove (symp, &symbol_rootP, &symbol_lastP);
|
||||
else
|
||||
S_SET_WEAK (symp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user