diff options
author | Tom Tromey <tom@tromey.com> | 2020-12-15 18:35:13 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-12-15 18:57:07 -0700 |
commit | efd7ff149a42c865cac422e3bafdf386c91c5373 (patch) | |
tree | 1ad19dfafeaca30bc40c43adf55e826327ead802 /gdb/dtrace-probe.c | |
parent | 2adab65cc07f07a581d57b05dfbc100952fab748 (diff) | |
download | gdb-efd7ff149a42c865cac422e3bafdf386c91c5373.zip gdb-efd7ff149a42c865cac422e3bafdf386c91c5373.tar.gz gdb-efd7ff149a42c865cac422e3bafdf386c91c5373.tar.bz2 |
Add expected type parameter to evaluate_expression
While working on the expression rewrite, I found a few spots that
called the internal functions of the expression evaluator, just to
pass in an expected type. This patch adds a parameter to
evaluate_expression so that these functions can avoid this dependency.
Regression tested on x86-64 Fedora 28.
gdb/ChangeLog
2020-12-15 Tom Tromey <tom@tromey.com>
* stap-probe.c (stap_probe::evaluate_argument): Use
evaluate_expression.
* dtrace-probe.c (dtrace_probe::evaluate_argument): Use
evaluate_expression.
* value.h (evaluate_expression): Add expect_type parameter.
* objc-lang.c (print_object_command): Call evaluate_expression.
* eval.c (evaluate_expression): Add expect_type parameter.
Diffstat (limited to 'gdb/dtrace-probe.c')
-rw-r--r-- | gdb/dtrace-probe.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/dtrace-probe.c b/gdb/dtrace-probe.c index b709390..c105763 100644 --- a/gdb/dtrace-probe.c +++ b/gdb/dtrace-probe.c @@ -714,11 +714,9 @@ dtrace_probe::evaluate_argument (unsigned n, { struct gdbarch *gdbarch = this->get_gdbarch (); struct dtrace_probe_arg *arg; - int pos = 0; arg = this->get_arg_by_number (n, gdbarch); - return evaluate_subexp_standard (arg->type, arg->expr.get (), &pos, - EVAL_NORMAL); + return evaluate_expression (arg->expr.get (), arg->type); } /* Implementation of the compile_to_ax method. */ |