summaryrefslogtreecommitdiff
path: root/bfd/elfcore.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2001-06-30 04:05:13 +0000
committerAlan Modra <amodra@bigpond.net.au>2001-06-30 04:05:13 +0000
commiteb230fd24a691df62bcc0ff171a8b0b7d32fb156 (patch)
tree4ab15fe12eef9437bbb16bfdd9b05cf352ecfccd /bfd/elfcore.h
parent28e70c7c4a540259e84eb3c4a5d7ee25c9b43364 (diff)
downloadbinutils-redhat-eb230fd24a691df62bcc0ff171a8b0b7d32fb156.tar.gz
* elfcore.h (elf_core_file_p): Call bfd_section_from_phdr directly
instead of _bfd_elfcore_section_from_phdr. * elf-bfd.h (_bfd_elfcore_section_from_phdr): Remove. * elf.c (_bfd_elfcore_section_from_phdr): Remove. (_bfd_elfcore_make_pseudosection): Expedite tail-call. (elfcore_grok_prstatus): Likewise. (elfcore_grok_lwpstatus): Likewise. (bfd_get_elf_phdr_upper_bound): Likewise. (elfcore_make_note_pseudosection): Formatting. (_bfd_elfcore_strndup): Formatting. * elf32-mips.c (mips_elf_sym_is_global): Formatting. (_bfd_elf32_mips_grok_prstatus): Expedite tail-call.
Diffstat (limited to 'bfd/elfcore.h')
-rw-r--r--bfd/elfcore.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elfcore.h b/bfd/elfcore.h
index ef71762e11..df3af0ce8d 100644
--- a/bfd/elfcore.h
+++ b/bfd/elfcore.h
@@ -206,7 +206,7 @@ elf_core_file_p (abfd)
/* Process each program header. */
for (phindex = 0; phindex < i_ehdrp->e_phnum; ++phindex)
{
- if (!_bfd_elfcore_section_from_phdr (abfd, i_phdrp + phindex, phindex))
+ if (! bfd_section_from_phdr (abfd, i_phdrp + phindex, phindex))
goto fail;
}