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:40 -0700 |
commit | a99be8c199c2cbfae137fb5a54151e781ecb7ec3 (patch) | |
tree | 034d3afed2183ae996ded937f32bdcb431f6c5f4 /gdb/f-lang.h | |
parent | aa1da9ed50fba2474438f83e6da577bb01ed4613 (diff) | |
download | gdb-a99be8c199c2cbfae137fb5a54151e781ecb7ec3.zip gdb-a99be8c199c2cbfae137fb5a54151e781ecb7ec3.tar.gz gdb-a99be8c199c2cbfae137fb5a54151e781ecb7ec3.tar.bz2 |
Remove now-unused Fortran evaluator code
Now that the Fortran parser has switched to the new style, there is no
need for the old Fortran evaluation code.
gdb/ChangeLog
2021-03-08 Tom Tromey <tom@tromey.com>
* f-lang.h (class f_language) <expresssion_ops>: Remove.
<exp_descriptor_tab>: Remove.
* f-lang.c (fortran_value_subarray, evaluate_subexp_f)
(operator_length_f, print_unop_subexp_f, print_binop_subexp_f)
(print_subexp_f, dump_subexp_body_f, operator_check_f)
(f_language::exp_descriptor_tab, fortran_prepare_argument):
Remove.
Diffstat (limited to 'gdb/f-lang.h')
-rw-r--r-- | gdb/f-lang.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/f-lang.h b/gdb/f-lang.h index 9174d8df..03b5910 100644 --- a/gdb/f-lang.h +++ b/gdb/f-lang.h @@ -220,11 +220,6 @@ public: /* See language.h. */ - const struct exp_descriptor *expression_ops () const override - { return &exp_descriptor_tab; } - - /* See language.h. */ - const struct op_print *opcode_print_table () const override { return op_print_tab; } @@ -236,11 +231,6 @@ protected: (const lookup_name_info &lookup_name) const override; private: - /* Table of expression handling functions for use by EXPRESSION_OPS - member function. */ - - static const struct exp_descriptor exp_descriptor_tab; - /* Table of opcode data for use by OPCODE_PRINT_TABLE member function. */ static const struct op_print op_print_tab[]; |