From 279b54a1193dd058598432bfb81bc93eb3297266 Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Fri, 7 Apr 2000 03:59:23 +0000 Subject: [PATCH] 2000-04-06 Michael Snyder * elfcore.h (elf_core_file_p): call backend_object_p which thereby gets an opportunity to update the arch/machine type. --- bfd/ChangeLog | 5 +++++ bfd/elfcore.h | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d9a8ee88551..a1f2d4f096d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2000-04-06 Michael Snyder + + * elfcore.h (elf_core_file_p): call backend_object_p which + thereby gets an opportunity to update the arch/machine type. + 2000-04-06 Timothy Wall * coffcode.h (coff_slurp_symbol_table): Handle C_STATLAB storage diff --git a/bfd/elfcore.h b/bfd/elfcore.h index e4454aac9d0..9f0966e9519 100644 --- a/bfd/elfcore.h +++ b/bfd/elfcore.h @@ -222,5 +222,13 @@ elf_core_file_p (abfd) /* Save the entry point from the ELF header. */ bfd_get_start_address (abfd) = i_ehdrp->e_entry; + /* Let the backend double check the format and override global + information. */ + if (ebd->elf_backend_object_p) + { + if ((*ebd->elf_backend_object_p) (abfd) == false) + goto wrong; + } + return abfd->xvec; } -- 2.30.2