diff options
author | Tom Tromey <tom@tromey.com> | 2021-03-08 07:27:57 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-03-08 07:28:24 -0700 |
commit | 165a813a3abaa1f5993d754765bff2cfa9755995 (patch) | |
tree | 894fdd041f92d7cf2f04a0fe27229d50834322a3 /gdb/ax-gdb.c | |
parent | e5946e1604068a154a8541f88d74ad75a9e52fac (diff) | |
download | gdb-165a813a3abaa1f5993d754765bff2cfa9755995.zip gdb-165a813a3abaa1f5993d754765bff2cfa9755995.tar.gz gdb-165a813a3abaa1f5993d754765bff2cfa9755995.tar.bz2 |
Introduce unop_cast_operation
This adds class unop_cast_operation, which implements UNOP_CAST.
gdb/ChangeLog
2021-03-08 Tom Tromey <tom@tromey.com>
* expop.h (class unop_cast_operation): New.
* ax-gdb.c (unop_cast_operation::do_generate_ax): New method.
Diffstat (limited to 'gdb/ax-gdb.c')
-rw-r--r-- | gdb/ax-gdb.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c index f81e5b9..84887da 100644 --- a/gdb/ax-gdb.c +++ b/gdb/ax-gdb.c @@ -2515,6 +2515,16 @@ unop_sizeof_operation::do_generate_ax (struct expression *exp, } void +unop_cast_operation::do_generate_ax (struct expression *exp, + struct agent_expr *ax, + struct axs_value *value, + struct type *cast_type) +{ + std::get<0> (m_storage)->generate_ax (exp, ax, value, + std::get<1> (m_storage)); +} + +void unop_memval_operation::do_generate_ax (struct expression *exp, struct agent_expr *ax, struct axs_value *value, |