diff options
Diffstat (limited to 'gdb/c-lang.c')
-rw-r--r-- | gdb/c-lang.c | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/gdb/c-lang.c b/gdb/c-lang.c index f29f340..73968ed 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -875,7 +875,6 @@ const struct exp_descriptor exp_descriptor_c = extern const struct language_data c_language_data = { - c_op_print_tab, /* expression operators for printing */ }; /* Class representing the C language. */ @@ -951,6 +950,11 @@ public: const struct exp_descriptor *expression_ops () const override { return &exp_descriptor_c; } + + /* See language.h. */ + + const struct op_print *opcode_print_table () const override + { return c_op_print_tab; } }; /* Single instance of the C language class. */ @@ -989,7 +993,6 @@ enum cplus_primitive_types { extern const struct language_data cplus_language_data = { - c_op_print_tab, /* expression operators for printing */ }; /* A class for the C++ language. */ @@ -1187,6 +1190,11 @@ public: const struct exp_descriptor *expression_ops () const override { return &exp_descriptor_c; } + /* See language.h. */ + + const struct op_print *opcode_print_table () const override + { return c_op_print_tab; } + protected: /* See language.h. */ @@ -1206,7 +1214,6 @@ static cplus_language cplus_language_defn; extern const struct language_data asm_language_data = { - c_op_print_tab, /* expression operators for printing */ }; /* A class for the ASM language. */ @@ -1269,6 +1276,11 @@ public: const struct exp_descriptor *expression_ops () const override { return &exp_descriptor_c; } + + /* See language.h. */ + + const struct op_print *opcode_print_table () const override + { return c_op_print_tab; } }; /* The single instance of the ASM language class. */ @@ -1281,7 +1293,6 @@ static asm_language asm_language_defn; extern const struct language_data minimal_language_data = { - c_op_print_tab, /* expression operators for printing */ }; /* A class for the minimal language. */ @@ -1333,6 +1344,11 @@ public: const struct exp_descriptor *expression_ops () const override { return &exp_descriptor_c; } + + /* See language.h. */ + + const struct op_print *opcode_print_table () const override + { return c_op_print_tab; } }; /* The single instance of the minimal language class. */ |