aboutsummaryrefslogtreecommitdiff
path: root/gdb/value.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2024-07-16 23:52:02 -0400
committerSimon Marchi <simon.marchi@efficios.com>2024-08-12 10:31:09 -0400
commit4144d36a68bda0f20c02e6a4444052b44a462155 (patch)
tree35f30b63534a727ff1ce4cb2d7e3f406f0ced154 /gdb/value.c
parent8d2f4b7c3168f79fdef3e50163c91cca43da1381 (diff)
downloadgdb-4144d36a68bda0f20c02e6a4444052b44a462155.zip
gdb-4144d36a68bda0f20c02e6a4444052b44a462155.tar.gz
gdb-4144d36a68bda0f20c02e6a4444052b44a462155.tar.bz2
gdb: add program_space parameter to lookup_minimal_symbol
>From what I can see, lookup_minimal_symbol doesn't have any dependencies on the global current state other than the single reference to current_program_space. Add a program_space parameter and make that current_program_space reference bubble up one level. Change-Id: I759415e2f9c74c9627a2fe05bd44eb4147eee6fe Reviewed-by: Keith Seitz <keiths@redhat.com> Approved-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/value.c')
-rw-r--r--gdb/value.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/value.c b/gdb/value.c
index 42a7af4..78ace05 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -2988,7 +2988,8 @@ value_static_field (struct type *type, int fieldno)
{
/* With some compilers, e.g. HP aCC, static data members are
reported as non-debuggable symbols. */
- bound_minimal_symbol msym = lookup_minimal_symbol (phys_name);
+ bound_minimal_symbol msym
+ = lookup_minimal_symbol (current_program_space, phys_name);
struct type *field_type = type->field (fieldno).type ();
if (!msym.minsym)
@@ -3176,7 +3177,7 @@ value_fn_field (struct value **arg1p, struct fn_field *f,
nullptr).symbol;
if (sym == nullptr)
{
- msym = lookup_minimal_symbol (physname);
+ msym = lookup_minimal_symbol (current_program_space, physname);
if (msym.minsym == NULL)
return NULL;
}