aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf32-sh.c
diff options
context:
space:
mode:
authorKaz Kojima <kkojima@rr.iij4u.or.jp>2003-07-04 08:41:57 +0000
committerKaz Kojima <kkojima@rr.iij4u.or.jp>2003-07-04 08:41:57 +0000
commit35cad4c475cf2bb3c7a99fa2d2c1303a5d2cb00e (patch)
treedb25b1444892d819e20bd345d29ee79e1cf4476d /bfd/elf32-sh.c
parent03151a5a117d288e01d3118697154c307d407fd7 (diff)
downloadgdb-35cad4c475cf2bb3c7a99fa2d2c1303a5d2cb00e.zip
gdb-35cad4c475cf2bb3c7a99fa2d2c1303a5d2cb00e.tar.gz
gdb-35cad4c475cf2bb3c7a99fa2d2c1303a5d2cb00e.tar.bz2
* elf32-sh.c (sh_elf_create_dynamic_sections): Return if dynamic
sections were created already. Remove unnecessary tests of the previous change.
Diffstat (limited to 'bfd/elf32-sh.c')
-rw-r--r--bfd/elf32-sh.c51
1 files changed, 21 insertions, 30 deletions
diff --git a/bfd/elf32-sh.c b/bfd/elf32-sh.c
index 2d1698c..5306a25 100644
--- a/bfd/elf32-sh.c
+++ b/bfd/elf32-sh.c
@@ -3754,6 +3754,8 @@ sh_elf_create_dynamic_sections (abfd, info)
}
htab = sh_elf_hash_table (info);
+ if (htab->root.dynamic_sections_created)
+ return TRUE;
/* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
.rel[a].bss sections. */
@@ -3768,16 +3770,12 @@ sh_elf_create_dynamic_sections (abfd, info)
if (bed->plt_readonly)
pltflags |= SEC_READONLY;
- s = htab->splt;
- if (s == NULL)
- {
- s = bfd_make_section (abfd, ".plt");
- htab->splt = s;
- if (s == NULL
- || ! bfd_set_section_flags (abfd, s, pltflags)
- || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
- return FALSE;
- }
+ s = bfd_make_section (abfd, ".plt");
+ htab->splt = s;
+ if (s == NULL
+ || ! bfd_set_section_flags (abfd, s, pltflags)
+ || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
+ return FALSE;
if (bed->want_plt_sym)
{
@@ -3801,17 +3799,13 @@ sh_elf_create_dynamic_sections (abfd, info)
return FALSE;
}
- if (htab->srelplt == NULL)
- {
- s = bfd_make_section (abfd,
- (bed->default_use_rela_p ?
- ".rela.plt" : ".rel.plt"));
- htab->srelplt = s;
- if (s == NULL
- || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
- || ! bfd_set_section_alignment (abfd, s, ptralign))
- return FALSE;
- }
+ s = bfd_make_section (abfd,
+ bed->default_use_rela_p ? ".rela.plt" : ".rel.plt");
+ htab->srelplt = s;
+ if (s == NULL
+ || ! bfd_set_section_flags (abfd, s, flags | SEC_READONLY)
+ || ! bfd_set_section_alignment (abfd, s, ptralign))
+ return FALSE;
if (htab->sgot == NULL
&& !create_got_section (abfd, info))
@@ -3851,14 +3845,11 @@ sh_elf_create_dynamic_sections (abfd, info)
image and use a R_*_COPY reloc to tell the dynamic linker to
initialize them at run time. The linker script puts the .dynbss
section into the .bss section of the final image. */
- if (htab->sdynbss == NULL)
- {
- s = bfd_make_section (abfd, ".dynbss");
- htab->sdynbss = s;
- if (s == NULL
- || ! bfd_set_section_flags (abfd, s, SEC_ALLOC))
- return FALSE;
- }
+ s = bfd_make_section (abfd, ".dynbss");
+ htab->sdynbss = s;
+ if (s == NULL
+ || ! bfd_set_section_flags (abfd, s, SEC_ALLOC))
+ return FALSE;
/* The .rel[a].bss section holds copy relocs. This section is not
normally needed. We need to create it here, though, so that the
@@ -3871,7 +3862,7 @@ sh_elf_create_dynamic_sections (abfd, info)
be needed, we can discard it later. We will never need this
section when generating a shared object, since they do not use
copy relocs. */
- if (! info->shared && htab->srelbss == NULL)
+ if (! info->shared)
{
s = bfd_make_section (abfd,
(bed->default_use_rela_p