From b853733a19bfa1718a399a00c4b176ff1703e09f Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 15 Apr 2002 08:47:03 +0000 Subject: [PATCH] * elf32-ppc.c (ppc_elf_add_symbol_hook): Check the hash table type. --- bfd/ChangeLog | 4 ++++ bfd/elf32-ppc.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 3b738183d..ca862e3a1 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2002-04-15 Alan Modra + + * elf32-ppc.c (ppc_elf_add_symbol_hook): Check the hash table type. + 2002-04-12 Michael Snyder * bfd-in.h (bfd_get_section_lma): New access macro. diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index be6cfabb1..9549d2936 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -2542,7 +2542,8 @@ ppc_elf_add_symbol_hook (abfd, info, sym, namep, flagsp, secp, valp) { if (sym->st_shndx == SHN_COMMON && !info->relocateable - && sym->st_size <= elf_gp_size (abfd)) + && sym->st_size <= elf_gp_size (abfd) + && info->hash->creator->flavour == bfd_target_elf_flavour) { /* Common symbols less than or equal to -G nn bytes are automatically put into .sdata. */ -- 2.11.4.GIT