aboutsummaryrefslogtreecommitdiff
path: root/gdb/eval.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-03-08 07:27:57 -0700
committerTom Tromey <tom@tromey.com>2021-03-08 07:28:15 -0700
commit176793957a9892b6632710d505873eba43b35223 (patch)
treead96faa7b021392a7035206239b059ee55e9e5ee /gdb/eval.c
parentb5cc3923def975c28d44421a11bac671ede5b92c (diff)
downloadgdb-176793957a9892b6632710d505873eba43b35223.zip
gdb-176793957a9892b6632710d505873eba43b35223.tar.gz
gdb-176793957a9892b6632710d505873eba43b35223.tar.bz2
Introduce func_static_var_operation
This adds class func_static_var_operation, which implements OP_FUNC_STATIC_VAR. gdb/ChangeLog 2021-03-08 Tom Tromey <tom@tromey.com> * expop.h (class func_static_var_operation): New. * eval.c (eval_op_func_static_var): No longer static.
Diffstat (limited to 'gdb/eval.c')
-rw-r--r--gdb/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/eval.c b/gdb/eval.c
index 7645291..56010ee 100644
--- a/gdb/eval.c
+++ b/gdb/eval.c
@@ -1237,7 +1237,7 @@ eval_op_var_msym_value (struct type *expect_type, struct expression *exp,
/* Helper function that implements the body of OP_FUNC_STATIC_VAR. */
-static struct value *
+struct value *
eval_op_func_static_var (struct type *expect_type, struct expression *exp,
enum noside noside,
value *func, const char *var)