diff options
Diffstat (limited to 'gdb/f-lang.c')
-rw-r--r-- | gdb/f-lang.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/f-lang.c b/gdb/f-lang.c index 2bf046d..510d067 100644 --- a/gdb/f-lang.c +++ b/gdb/f-lang.c @@ -486,7 +486,6 @@ static const struct exp_descriptor exp_descriptor_f = extern const struct language_data f_language_data = { - f_op_print_tab, /* expression operators for printing */ }; /* Class representing the Fortran language. */ @@ -736,6 +735,11 @@ public: const struct exp_descriptor *expression_ops () const override { return &exp_descriptor_f; } + /* See language.h. */ + + const struct op_print *opcode_print_table () const override + { return f_op_print_tab; } + protected: /* See language.h. */ |