From: Roland McGrath Date: Mon, 17 Dec 2012 19:13:07 +0000 (+0000) Subject: bfd/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=adbcc655b44c10ec3f23d6387058bc70a125f127;p=binutils-gdb.git bfd/ * elf32-arm.c (elf32_arm_size_stubs): Skip input BFDs that are not ARM ELF. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index fb5177dd8b6..098001e1a80 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2012-12-17 Roland McGrath + Alan Modra + + * elf32-arm.c (elf32_arm_size_stubs): Skip input BFDs that are + not ARM ELF. + 2012-12-17 Nick Clifton * MAINTAINERS: Add copyright notice. diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c index fd7d26a71ba..e2f8a9607ae 100644 --- a/bfd/elf32-arm.c +++ b/bfd/elf32-arm.c @@ -4987,6 +4987,9 @@ elf32_arm_size_stubs (bfd *output_bfd, asection *section; Elf_Internal_Sym *local_syms = NULL; + if (!is_arm_elf (input_bfd)) + continue; + num_a8_relocs = 0; /* We'll need the symbol table in a second. */