diff options
author | Alan Modra <amodra@gmail.com> | 2011-10-15 09:22:42 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2011-10-15 09:22:42 +0000 |
commit | 4fc89632580d99f45565dc038a4c5d895f73d5cd (patch) | |
tree | d6e1536fb036444a9ba0288dbdb2c1a5e3b1902f /ld/emultempl/ppc64elf.em | |
parent | *** empty log message *** (diff) | |
download | binutils-gdb-4fc89632580d99f45565dc038a4c5d895f73d5cd.tar.gz binutils-gdb-4fc89632580d99f45565dc038a4c5d895f73d5cd.tar.bz2 binutils-gdb-4fc89632580d99f45565dc038a4c5d895f73d5cd.zip |
* emultempl/ppc64elf.em (gld${EMULATION_NAME}_finish): Remove toc check.
Diffstat (limited to 'ld/emultempl/ppc64elf.em')
-rw-r--r-- | ld/emultempl/ppc64elf.em | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ld/emultempl/ppc64elf.em b/ld/emultempl/ppc64elf.em index 0a49c5ba4cf..80143a85257 100644 --- a/ld/emultempl/ppc64elf.em +++ b/ld/emultempl/ppc64elf.em @@ -530,14 +530,6 @@ gld${EMULATION_NAME}_finish (void) descriptor in the .opd section. */ entry_section = ".opd"; - if (link_info.relocatable) - { - asection *toc = bfd_get_section_by_name (link_info.output_bfd, ".toc"); - if (toc != NULL - && bfd_section_size (link_info.output_bfd, toc) > 0x10000) - einfo ("%X%P: TOC section size exceeds 64k\n"); - } - if (stub_added) { char *msg = NULL; |