extern struct bfd_section *bfd_elf_tls_setup
(bfd *, struct bfd_link_info *);
-extern bool _bfd_elf_link_create_dynamic_sections
+extern bool bfd_elf_link_create_dynamic_sections
(bfd *, struct bfd_link_info *);
extern bool _bfd_elf_omit_section_dynsym_default
(bfd *, struct bfd_link_info *, asection *) ATTRIBUTE_HIDDEN;
{
if (info->dynamic
&& ! htab->dynamic_sections_created
- && ! _bfd_elf_link_create_dynamic_sections (abfd, info))
+ && ! bfd_elf_link_create_dynamic_sections (abfd, info))
return false;
sreloc = _bfd_elf_make_dynamic_reloc_section (sec, dynobj,
2, abfd,
actual contents and size of these sections later. */
bool
-_bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
+bfd_elf_link_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
{
flagword flags;
asection *s;
}
}
- if (!_bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
+ if (!bfd_elf_link_create_dynamic_sections (hash_table->dynobj, info))
return -1;
if (!_bfd_elf_add_dynamic_entry (info, DT_NEEDED, strindex))
&& info->output_bfd->xvec == abfd->xvec
&& !htab->dynamic_sections_created)
{
- if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
+ if (!bfd_elf_link_create_dynamic_sections (abfd, info))
goto error_return;
}
}
/* Create dynamic sections for backends that require that be done
before setup_gnu_properties. */
if (add_needed
- && !_bfd_elf_link_create_dynamic_sections (abfd, info))
+ && !bfd_elf_link_create_dynamic_sections (abfd, info))
return false;
/* Save the DT_AUDIT entry for the linker emulation code. */
/* Create dynamic sections for backends that require
that be done before setup_gnu_properties. */
- if (!_bfd_elf_link_create_dynamic_sections (abfd, info))
+ if (!bfd_elf_link_create_dynamic_sections (abfd, info))
goto error_free_vers;
add_needed = true;
}
if ((o->flags & SEC_LINKER_CREATED) != 0)
{
- /* Section was created by _bfd_elf_link_create_dynamic_sections
+ /* Section was created by bfd_elf_link_create_dynamic_sections()
or somesuch. */
continue;
}
if ((o->flags & SEC_LINKER_CREATED) == 0)
{
/* At this point, we are only interested in sections
- created by _bfd_elf_link_create_dynamic_sections. */
+ created by bfd_elf_link_create_dynamic_sections(). */
continue;
}
if (htab->stab_info.stabstr == o)