This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
Small powerpc64 linker speedup
- From: Alan Modra <amodra at bigpond dot net dot au>
- To: binutils at sourceware dot org
- Date: Thu, 17 Aug 2006 17:38:56 +0930
- Subject: Small powerpc64 linker speedup
This should prevent some unnecessary scanning of relocs.
* elf64-ppc.c (ppc64_elf_size_stubs): Ignore non-code sections.
Index: bfd/elf64-ppc.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-ppc.c,v
retrieving revision 1.242
diff -u -p -r1.242 elf64-ppc.c
--- bfd/elf64-ppc.c 8 Aug 2006 14:21:46 -0000 1.242
+++ bfd/elf64-ppc.c 17 Aug 2006 07:32:55 -0000
@@ -9080,6 +9080,9 @@ ppc64_elf_size_stubs (bfd *output_bfd,
/* If there aren't any relocs, then there's nothing more
to do. */
if ((section->flags & SEC_RELOC) == 0
+ || (section->flags & SEC_ALLOC) == 0
+ || (section->flags & SEC_LOAD) == 0
+ || (section->flags & SEC_CODE) == 0
|| section->reloc_count == 0)
continue;
--
Alan Modra
IBM OzLabs - Linux Technology Centre