diff options
author | Tom Tromey <tom@tromey.com> | 2022-12-30 11:29:12 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2024-01-08 18:40:21 -0700 |
commit | 4ea870efec420b8c9010a7bf397ec1806889f535 (patch) | |
tree | dfba51c935eaee2eba44e223661b7ef164965820 /gdb/symtab.c | |
parent | 8e279fda0f725500c8f84a8b2ed56b0ee8d00ce0 (diff) | |
download | binutils-4ea870efec420b8c9010a7bf397ec1806889f535.zip binutils-4ea870efec420b8c9010a7bf397ec1806889f535.tar.gz binutils-4ea870efec420b8c9010a7bf397ec1806889f535.tar.bz2 |
Add quick_symbol_functions::compute_main_name
This adds a new compute_main_name method to quick_symbol_functions.
Currently there are no implementations of this, but a subsequent patch
will add one.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r-- | gdb/symtab.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c index ffb095a..cc0bdb8 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -6334,6 +6334,8 @@ find_main_name (void) accurate. */ for (objfile *objfile : current_program_space->objfiles ()) { + objfile->compute_main_name (); + if (objfile->per_bfd->name_of_main != NULL) { set_main_name (pspace, |