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:35 -0700 |
commit | 065ec8268d5b1eb1895da4328d3bc9a5a5d043d1 (patch) | |
tree | f35f293fc115f0079d571fc1dad0bf7790d9dac6 /gdb/ada-lang.c | |
parent | 9e99f48f27790c43d5fd663c9eb4c3a19ae49efa (diff) | |
download | gdb-065ec8268d5b1eb1895da4328d3bc9a5a5d043d1.zip gdb-065ec8268d5b1eb1895da4328d3bc9a5a5d043d1.tar.gz gdb-065ec8268d5b1eb1895da4328d3bc9a5a5d043d1.tar.bz2 |
Introduce ada_binop_exp_operation
This adds class ada_binop_exp_operation, which implements BINOP_EXP
for Ada.
gdb/ChangeLog
2021-03-08 Tom Tromey <tom@tromey.com>
* ada-lang.c (ada_binop_exp): No longer static.
* ada-exp.h (ada_binop_exp_operation): New typedef.
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index c689c7f..8a4de77 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -10416,7 +10416,7 @@ ada_binop_minmax (struct type *expect_type, /* A helper function for BINOP_EXP. */ -static struct value * +struct value * ada_binop_exp (struct type *expect_type, struct expression *exp, enum noside noside, enum exp_opcode op, |