diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-02-23 20:24:06 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-02-23 20:24:06 +0000 |
commit | 8feff7172602b84ba285d46ea1b08374d228bfe0 (patch) | |
tree | 5550764e7ade3b43f1ec5a4971d8b23056fe41a4 /bfd/hppa.c | |
parent | ff7f25de27ee6ae4cdd4395843fd2b5adfa4aa4b (diff) | |
download | gdb-8feff7172602b84ba285d46ea1b08374d228bfe0.zip gdb-8feff7172602b84ba285d46ea1b08374d228bfe0.tar.gz gdb-8feff7172602b84ba285d46ea1b08374d228bfe0.tar.bz2 |
* bfd-in.h (JUMP_TABLE): Added bfd_reloc_type_lookup and
bfd_make_debug_symbol; they were already in the target structure.
* Adjusted all uses of JUMP_TABLE.
* coffgen.c, libcoff-in.h (coff_bfd_make_debug_symbol): Renamed
from coff_make_debug_symbol.
* libcoff.h: Updated accordingly.
Diffstat (limited to 'bfd/hppa.c')
-rw-r--r-- | bfd/hppa.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -616,6 +616,10 @@ hppa_core_file_matches_executable_p (core_bfd, exec_bfd) bfd_generic_get_relocated_section_contents #define hppa_bfd_relax_section bfd_generic_relax_section #define hppa_bfd_seclet_link bfd_generic_seclet_link +#define hppa_bfd_reloc_type_lookup \ + ((CONST struct reloc_howto_struct *(*) PARAMS ((bfd *, bfd_reloc_code_real_type))) bfd_nullvoidptr) +#define hppa_bfd_make_debug_symbol \ + ((asymbol *(*) PARAMS ((bfd *, void *, unsigned long))) bfd_nullvoidptr) bfd_target hppa_vec = { @@ -655,7 +659,8 @@ _do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* hdrs bfd_false, }, #undef hppa - JUMP_TABLE(hppa) + JUMP_TABLE(hppa), + (PTR) 0 }; #endif /* HOST_HPPAHPUX */ |