* elf32-m68k.c (elf_m68k_finish_dynamic_symbol): Don't make

_GLOBAL_OFFSET_TABLE_ and _DYNAMIC absolute.
This commit is contained in:
Andreas Schwab 2012-06-22 09:30:18 +00:00
parent c614397c62
commit b70e7a2fdf
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2012-06-22 Andreas Schwab <schwab@linux-m68k.org>
* elf32-m68k.c (elf_m68k_finish_dynamic_symbol): Don't make
_GLOBAL_OFFSET_TABLE_ and _DYNAMIC absolute.
2012-06-22 Alan Modra <amodra@gmail.com>
* elf64-ppc.c (ppc64_elf_func_desc_adjust): Don't emit out-of-line

View File

@ -4500,11 +4500,6 @@ elf_m68k_finish_dynamic_symbol (output_bfd, info, h, sym)
bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
}
/* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
if (strcmp (h->root.root.string, "_DYNAMIC") == 0
|| h == elf_hash_table (info)->hgot)
sym->st_shndx = SHN_ABS;
return TRUE;
}