diff options
author | Alan Modra <amodra@gmail.com> | 2010-01-08 05:55:10 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2010-01-08 05:55:10 +0000 |
commit | fb34365b48184914756d2bf103c60c4a7769ff43 (patch) | |
tree | 0895233389a4dcdbb043399efb8f3cbf62e832df /bfd/elf64-ppc.c | |
parent | d023c380db01abd7f6f2a53edecca09488b53982 (diff) | |
download | gdb-fb34365b48184914756d2bf103c60c4a7769ff43.zip gdb-fb34365b48184914756d2bf103c60c4a7769ff43.tar.gz gdb-fb34365b48184914756d2bf103c60c4a7769ff43.tar.bz2 |
PR ld/11133
* elf32-cr16.c (elf32_cr16_gc_mark_hook): Call _bfd_elf_gc_mark_hook.
* elf32-microblaze.c (microblaze_elf_gc_mark_hook): Likewise.
* elf64-ppc.c (ppc64_elf_gc_mark_hook): Likewise.
Diffstat (limited to 'bfd/elf64-ppc.c')
-rw-r--r-- | bfd/elf64-ppc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index a940dab..6648ddc 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -1,6 +1,6 @@ /* PowerPC64-specific support for 64-bit ELF. Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, - 2009 Free Software Foundation, Inc. + 2009, 2010 Free Software Foundation, Inc. Written by Linus Nordberg, Swox AB <info@swox.com>, based on elf32-ppc.c by Ian Lance Taylor. Largely rewritten by Alan Modra. @@ -5624,7 +5624,7 @@ ppc64_elf_gc_mark_dynamic_ref (struct elf_link_hash_entry *h, void *inf) static asection * ppc64_elf_gc_mark_hook (asection *sec, - struct bfd_link_info *info ATTRIBUTE_UNUSED, + struct bfd_link_info *info, Elf_Internal_Rela *rel, struct elf_link_hash_entry *h, Elf_Internal_Sym *sym) @@ -5683,7 +5683,7 @@ ppc64_elf_gc_mark_hook (asection *sec, break; default: - break; + return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym); } } } |