diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2024-05-16 16:37:06 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2024-07-15 14:34:12 -0400 |
commit | 9c067e28448f0314d1b0440945e16382a226fd7b (patch) | |
tree | 5260c8605c6335170ce5a35da2e7f416277017ae /gdb/parse.c | |
parent | cc7541ce5e1c317c7b185b005f0c048c997b2b58 (diff) | |
download | gdb-9c067e28448f0314d1b0440945e16382a226fd7b.zip gdb-9c067e28448f0314d1b0440945e16382a226fd7b.tar.gz gdb-9c067e28448f0314d1b0440945e16382a226fd7b.tar.bz2 |
gdb: pass program space to have_{full,partial}_symbols
Make the current program space reference bubble up one level.
Change-Id: I19c4fc2ca955f9c828ef426a077b43983865697b
Approved-By: Tom Tromey <tom@tromey.com>
Reviewed-By: Thiago Jung Bauermann <thiago.bauermann@linaro.org>
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index 0a2b2a5..c10b09a 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -148,7 +148,8 @@ parser_state::push_symbol (const char *name, block_symbol sym) struct bound_minimal_symbol msymbol = lookup_bound_minimal_symbol (name); if (msymbol.minsym != NULL) push_new<expr::var_msym_value_operation> (msymbol); - else if (!have_full_symbols () && !have_partial_symbols ()) + else if (!have_full_symbols (current_program_space) + && !have_partial_symbols (current_program_space)) error (_("No symbol table is loaded. Use the \"file\" command.")); else error (_("No symbol \"%s\" in current context."), name); |