diff options
author | Andrew Burgess <aburgess@redhat.com> | 2024-07-31 15:58:20 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2024-11-10 10:18:22 +0000 |
commit | 629bcc68d799ff77a5f174e2f5300f9a26a83521 (patch) | |
tree | 2e591d77140d10d5a1b7e8f3fe5eb640d6b5516f /gdb/symfile-debug.c | |
parent | 73d7312ff6196747ff64f74ddcc6cb1c032a68b4 (diff) | |
download | binutils-629bcc68d799ff77a5f174e2f5300f9a26a83521.zip binutils-629bcc68d799ff77a5f174e2f5300f9a26a83521.tar.gz binutils-629bcc68d799ff77a5f174e2f5300f9a26a83521.tar.bz2 |
gdb: rename ext_lang_missing_debuginfo_result
In preparation for later commits in this series, rename
ext_lang_missing_debuginfo_result to ext_lang_missing_file_result.
A later commit will add additional Python APIs to handle different
types of missing files beyond just debuginfo.
This is just a rename commit, there should be no functional changes
after this commit.
Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb/symfile-debug.c')
-rw-r--r-- | gdb/symfile-debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile-debug.c b/gdb/symfile-debug.c index 6bf8dc3..b21a5a4 100644 --- a/gdb/symfile-debug.c +++ b/gdb/symfile-debug.c @@ -630,7 +630,7 @@ objfile::find_and_add_separate_symbol_file (symfile_add_flags symfile_flags) the user a system specific message that guides them to finding the missing debug info. */ - ext_lang_missing_debuginfo_result ext_result + ext_lang_missing_file_result ext_result = ext_lang_handle_missing_debuginfo (this); if (!ext_result.filename ().empty ()) { |