summaryrefslogtreecommitdiff
path: root/bfd/elf64-s390.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2009-06-17 18:08:35 +0000
committerH.J. Lu <hjl@lucon.org>2009-06-17 18:08:35 +0000
commitf0c48fe3cefb05390cbff64c756cb33a536cd506 (patch)
treec5ac26ed4a0e872093a877b56b4a5788770c3b34 /bfd/elf64-s390.c
parentaf4ef0275bdc67c30508511694a477ab9d98b56a (diff)
downloadbinutils-redhat-f0c48fe3cefb05390cbff64c756cb33a536cd506.tar.gz
2009-06-17 H.J. Lu <hongjiu.lu@intel.com>
* elf32-arm.c (create_got_section): Get existing .rela.got section. * elf32-hppa.c (elf32_hppa_create_dynamic_sections): Likewise. * elf32-lm32.c (create_got_section): Likewise. * elf32-m32r.c (create_got_section): Likewise. * elf32-ppc.c (ppc_elf_create_got): Likewise. * elf32-s390.c (create_got_section): Likewise. * elf32-sh.c (create_got_section): Likewise. * elf32-xtensa.c (elf_xtensa_create_dynamic_sections): Likewise. * elf64-s390.c (create_got_section): Likewise. * elfxx-sparc.c (create_got_section): Likewise. * elflink.c (_bfd_elf_create_got_section): Properly initialize the GOT size.
Diffstat (limited to 'bfd/elf64-s390.c')
-rw-r--r--bfd/elf64-s390.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/bfd/elf64-s390.c b/bfd/elf64-s390.c
index 21a58649d9..c9bd764a44 100644
--- a/bfd/elf64-s390.c
+++ b/bfd/elf64-s390.c
@@ -776,18 +776,9 @@ create_got_section (dynobj, info)
htab = elf_s390_hash_table (info);
htab->sgot = bfd_get_section_by_name (dynobj, ".got");
htab->sgotplt = bfd_get_section_by_name (dynobj, ".got.plt");
- if (!htab->sgot || !htab->sgotplt)
+ htab->srelgot = bfd_get_section_by_name (dynobj, ".rela.got");
+ if (!htab->sgot || !htab->sgotplt || !htab->srelgot)
abort ();
-
- htab->srelgot = bfd_make_section_with_flags (dynobj, ".rela.got",
- (SEC_ALLOC | SEC_LOAD
- | SEC_HAS_CONTENTS
- | SEC_IN_MEMORY
- | SEC_LINKER_CREATED
- | SEC_READONLY));
- if (htab->srelgot == NULL
- || ! bfd_set_section_alignment (dynobj, htab->srelgot, 3))
- return FALSE;
return TRUE;
}