diff options
author | Aaron Merey <amerey@redhat.com> | 2022-09-02 14:16:30 -0400 |
---|---|---|
committer | Aaron Merey <amerey@redhat.com> | 2022-09-06 10:42:50 -0400 |
commit | 6e7a29c7de4e1df679f2b6f6449b20474fbbcfdf (patch) | |
tree | 4ebae737f83b181c6a30c561bcf09a238c6da55f /bfd/xsym.c | |
parent | cb21dd0c599a420117abbcbbd1e20cce8d9e771d (diff) | |
download | binutils-gdb-6e7a29c7de4e1df679f2b6f6449b20474fbbcfdf.tar.gz |
bfd: Add bfd_find_nearest_line_with_alt
bfd_find_nearest_line_with_alt functions like bfd_find_nearest_line with
the addition of a parameter for specifying the filename of a supplementary
debug file such as one referenced by .gnu_debugaltlink or .debug_sup.
This patch focuses on implementing bfd_find_nearest_line_with_alt
support for ELF/DWARF2 .gnu_debugaltlink. For other targets this
function simply sets the invalid_operation bfd_error.
Diffstat (limited to 'bfd/xsym.c')
-rw-r--r-- | bfd/xsym.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/xsym.c b/bfd/xsym.c index 8a092f07f9c..b8e3d6c68a6 100644 --- a/bfd/xsym.c +++ b/bfd/xsym.c @@ -32,6 +32,7 @@ #define bfd_sym_bfd_is_target_special_symbol _bfd_bool_bfd_asymbol_false #define bfd_sym_get_lineno _bfd_nosymbols_get_lineno #define bfd_sym_find_nearest_line _bfd_nosymbols_find_nearest_line +#define bfd_sym_find_nearest_line_with_alt _bfd_nosymbols_find_nearest_line_with_alt #define bfd_sym_find_line _bfd_nosymbols_find_line #define bfd_sym_find_inliner_info _bfd_nosymbols_find_inliner_info #define bfd_sym_get_symbol_version_string _bfd_nosymbols_get_symbol_version_string |