* elf32-cris.c (cris_elf_relocate_section) <case R_CRIS_16_GOT,

case R_CRIS_32_GOT>: Correct test for filling in constant .got
	contents, enabling for a non-DSO, for symbols defined in the
	program with --export-dynamic.
This commit is contained in:
Hans-Peter Nilsson 2002-11-07 13:28:04 +00:00
parent 1790e8ab27
commit 205cfeb0bf
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2002-11-07 Hans-Peter Nilsson <hp@axis.com>
* elf32-cris.c (cris_elf_relocate_section) <case R_CRIS_16_GOT,
case R_CRIS_32_GOT>: Correct test for filling in constant .got
contents, enabling for a non-DSO, for symbols defined in the
program with --export-dynamic.
2002-11-07 Alan Modra <amodra@bigpond.net.au>
* elf64-ppc.c: Comment typo fixes.

View File

@ -1022,7 +1022,8 @@ cris_elf_relocate_section (output_bfd, info, input_bfd, input_section,
BFD_ASSERT (off != (bfd_vma) -1);
if (!elf_hash_table (info)->dynamic_sections_created
|| (! info->shared && h->dynindx == -1)
|| (! info->shared
&& (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR))
|| (info->shared
&& (info->symbolic || h->dynindx == -1)
&& (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR)))