diff options
author | Nick Clifton <nickc@redhat.com> | 2001-08-11 16:48:15 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-08-11 16:48:15 +0000 |
commit | a32288021cd7efd92661b2d2bc74b49d17f7e229 (patch) | |
tree | 578fce70b5567056b1e07f3c046dd58266722f3c /bfd/elfxx-target.h | |
parent | 100615dafa143a2c8c5a74a6275a49ec67a232ba (diff) | |
download | gdb-a32288021cd7efd92661b2d2bc74b49d17f7e229.tar.gz |
replace direct invocation og elf vma print functions with indirect invocation
Diffstat (limited to 'bfd/elfxx-target.h')
-rw-r--r-- | bfd/elfxx-target.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bfd/elfxx-target.h b/bfd/elfxx-target.h index 2b86aacabde..2d0970e449a 100644 --- a/bfd/elfxx-target.h +++ b/bfd/elfxx-target.h @@ -338,6 +338,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef elf_backend_grok_psinfo #define elf_backend_grok_psinfo NULL #endif +#ifndef elf_backend_sprintf_vma +#define elf_backend_sprintf_vma _bfd_elf_sprintf_vma +#endif +#ifndef elf_backend_fprintf_vma +#define elf_backend_fprintf_vma _bfd_elf_fprintf_vma +#endif /* Previously, backends could only use SHT_REL or SHT_RELA relocation sections, but not both. They defined USE_REL to indicate SHT_REL @@ -423,6 +429,8 @@ static CONST struct elf_backend_data elfNN_bed = elf_backend_count_relocs, elf_backend_grok_prstatus, elf_backend_grok_psinfo, + elf_backend_sprintf_vma, + elf_backend_fprintf_vma, elf_backend_ecoff_debug_swap, ELF_MACHINE_ALT1, ELF_MACHINE_ALT2, |