diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-01-12 00:19:41 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-01-12 00:19:41 +0000 |
commit | 870f29f564eedeb51ed20043c3e828cfeec72b67 (patch) | |
tree | 003dbee12ab12399e53fd7b2f66a0fcc864c84ba /include | |
parent | 0550e9f45c111a415b62f68ebba5b83117e3ce14 (diff) | |
download | gdb-870f29f564eedeb51ed20043c3e828cfeec72b67.zip gdb-870f29f564eedeb51ed20043c3e828cfeec72b67.tar.gz gdb-870f29f564eedeb51ed20043c3e828cfeec72b67.tar.bz2 |
Updated for bfd changes.
Diffstat (limited to 'include')
-rw-r--r-- | include/bfd.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/include/bfd.h b/include/bfd.h index bdb3160..d323f10 100644 --- a/include/bfd.h +++ b/include/bfd.h @@ -287,7 +287,8 @@ CAT(NAME,_bfd_debug_info_start),\ CAT(NAME,_bfd_debug_info_end),\ CAT(NAME,_bfd_debug_info_accumulate),\ CAT(NAME,_bfd_get_relocated_section_contents),\ -CAT(NAME,_bfd_relax_section) +CAT(NAME,_bfd_relax_section),\ +CAT(NAME,_bfd_seclet_link) #define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table @@ -1297,11 +1298,14 @@ bfd_get_size PARAMS ((bfd *)); #define bfd_set_arch_mach(abfd, arch, mach)\ BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach)) -#define bfd_get_relocated_section_contents(abfd, seclet, data) \ - BFD_SEND (abfd, _bfd_get_relocated_section_contents, (abfd, seclet, data)) +#define bfd_get_relocated_section_contents(abfd, seclet, data, relocateable) \ + BFD_SEND (abfd, _bfd_get_relocated_section_contents, (abfd, seclet, data, relocateable)) #define bfd_relax_section(abfd, section, symbols) \ BFD_SEND (abfd, _bfd_relax_section, (abfd, section, symbols)) + +#define bfd_seclet_link(abfd, data, relocateable) \ + BFD_SEND (abfd, _bfd_seclet_link, (abfd, data, relocateable)) symindex bfd_get_next_mapent PARAMS ((bfd *, symindex previous, carsym ** sym)); @@ -1415,10 +1419,14 @@ typedef struct bfd_target void (*_bfd_debug_info_accumulate) PARAMS ((bfd *, struct sec *)); bfd_byte * (*_bfd_get_relocated_section_contents) PARAMS ((bfd *, - struct bfd_seclet *, bfd_byte *data)); + struct bfd_seclet *, bfd_byte *data, + boolean relocateable)); boolean (*_bfd_relax_section) PARAMS ((bfd *, struct sec *, struct symbol_cache_entry **)); + + boolean (*_bfd_seclet_link) PARAMS ((bfd *, PTR data, + boolean relocateable)); /* See documentation on reloc types. */ CONST struct reloc_howto_struct * (*reloc_type_lookup) PARAMS ((bfd *abfd, |