mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-23 20:19:49 +00:00
* elf64-ppc.c (ppc64_elf_action_discarded): Return 0
for .toc1 section.
This commit is contained in:
parent
7a732551f4
commit
bce50a28c0
@ -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>
|
||||
Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* 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.
|
||||
Written by Linus Nordberg, Swox AB <info@swox.com>,
|
||||
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)
|
||||
return 0;
|
||||
|
||||
if (strcmp (".toc1", sec->name) == 0)
|
||||
return 0;
|
||||
|
||||
return _bfd_elf_default_action_discarded (sec);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user