* elf64-ppc.c (ppc64_elf_action_discarded): Return 0

for .toc1 section.
This commit is contained in:
Jakub Jelinek 2006-01-01 00:06:24 +00:00
parent 7a732551f4
commit bce50a28c0
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-01-01 Jakub Jelinek <jakub@redhat.com>
* elf64-ppc.c (ppc64_elf_action_discarded): Return 0
for .toc1 section.
2005-12-31 Valeriy E. Ushakov <uwe@NetBSD.org> 2005-12-31 Valeriy E. Ushakov <uwe@NetBSD.org>
Kaz Kojima <kkojima@rr.iij4u.or.jp> Kaz Kojima <kkojima@rr.iij4u.or.jp>

View File

@ -1,5 +1,5 @@
/* PowerPC64-specific support for 64-bit ELF. /* PowerPC64-specific support for 64-bit ELF.
Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005 Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc. Free Software Foundation, Inc.
Written by Linus Nordberg, Swox AB <info@swox.com>, Written by Linus Nordberg, Swox AB <info@swox.com>,
based on elf32-ppc.c by Ian Lance Taylor. based on elf32-ppc.c by Ian Lance Taylor.
@ -9494,6 +9494,9 @@ ppc64_elf_action_discarded (asection *sec)
if (strcmp (".toc", sec->name) == 0) if (strcmp (".toc", sec->name) == 0)
return 0; return 0;
if (strcmp (".toc1", sec->name) == 0)
return 0;
return _bfd_elf_default_action_discarded (sec); return _bfd_elf_default_action_discarded (sec);
} }