summaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-01-31 12:12:39 -0700
committerTom Tromey <tom@tromey.com>2023-02-13 15:21:07 -0700
commitb9f74d5432ffeef0e2281cb09c28d4b6d0371603 (patch)
tree1c3a0a540a84dbb2cd0188166de8de451ba2580a /gdb/valops.c
parentc8580184bbd1af58769d143b23d254737b08de9d (diff)
downloadbinutils-gdb-b9f74d5432ffeef0e2281cb09c28d4b6d0371603.tar.gz
Turn value_computed_closure and value_computed_funcs functions into methods
This changes the value_computed_funcs and value_computed_closure functions to be methods of value. Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/valops.c')
-rw-r--r--gdb/valops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/valops.c b/gdb/valops.c
index 7e3fca30af2..0d321e81027 100644
--- a/gdb/valops.c
+++ b/gdb/valops.c
@@ -1273,7 +1273,7 @@ value_assign (struct value *toval, struct value *fromval)
case lval_computed:
{
- const struct lval_funcs *funcs = value_computed_funcs (toval);
+ const struct lval_funcs *funcs = toval->computed_funcs ();
if (funcs->write != NULL)
{
@@ -1639,7 +1639,7 @@ value_ind (struct value *arg1)
if (VALUE_LVAL (arg1) == lval_computed)
{
- const struct lval_funcs *funcs = value_computed_funcs (arg1);
+ const struct lval_funcs *funcs = arg1->computed_funcs ();
if (funcs->indirect)
{