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:26 -0700 |
commit | cc6bd32eeac6b31b036a172b6841d699e05b285f (patch) | |
tree | 150f9d662a6c0c7e57f32270a741a8800491ec11 /gdb/ada-lang.c | |
parent | 42fecb6183f4cce4e85473b8c43d90ec0ea562e7 (diff) | |
download | gdb-cc6bd32eeac6b31b036a172b6841d699e05b285f.zip gdb-cc6bd32eeac6b31b036a172b6841d699e05b285f.tar.gz gdb-cc6bd32eeac6b31b036a172b6841d699e05b285f.tar.bz2 |
Introduce ada_qual_operation
This adds class ada_qual_operation, which implements UNOP_QUAL.
gdb/ChangeLog
2021-03-08 Tom Tromey <tom@tromey.com>
* ada-lang.c (ada_qual_operation::evaluate): New method.
* ada-exp.h (class ada_qual_operation): New.
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 0666302..409ffb9 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -10427,6 +10427,15 @@ ada_string_operation::evaluate (struct type *expect_type, return result; } +value * +ada_qual_operation::evaluate (struct type *expect_type, + struct expression *exp, + enum noside noside) +{ + struct type *type = std::get<1> (m_storage); + return std::get<0> (m_storage)->evaluate (type, exp, noside); +} + } /* Implement the evaluate_exp routine in the exp_descriptor structure |