diff options
Diffstat (limited to 'bfd/mach-o.h')
-rw-r--r-- | bfd/mach-o.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bfd/mach-o.h b/bfd/mach-o.h index d85224e..686bb90 100644 --- a/bfd/mach-o.h +++ b/bfd/mach-o.h @@ -516,6 +516,9 @@ typedef struct mach_o_data_struct is expected. */ bfd_mach_o_symtab_command *symtab; bfd_mach_o_dysymtab_command *dysymtab; + + /* A place to stash dwarf2 info for this bfd. */ + void *dwarf2_find_line_info; } bfd_mach_o_data_struct; @@ -590,6 +593,10 @@ unsigned int bfd_mach_o_get_section_type_from_name (const char *); unsigned int bfd_mach_o_get_section_attribute_from_name (const char *); void bfd_mach_o_normalize_section_name (const char *, const char *, const char **, flagword *); +bfd_boolean bfd_mach_o_find_nearest_line (bfd *, asection *, asymbol **, + bfd_vma, const char **, + const char **, unsigned int *); +bfd_boolean bfd_mach_o_close_and_cleanup (bfd *); unsigned int bfd_mach_o_section_get_nbr_indirect (bfd *, bfd_mach_o_section *); unsigned int bfd_mach_o_section_get_entry_size (bfd *, bfd_mach_o_section *); |