From d3355e4dec4966ea32d47fc004e1bf8d9b3a3510 Mon Sep 17 00:00:00 2001 From: Andrew Burgess Date: Wed, 8 Jul 2020 10:55:56 +0100 Subject: gdb: Convert la_store_sym_names_in_linkage_form_p to a method Convert language_data::la_store_sym_names_in_linkage_form_p member variable to language_defn::store_sym_names_in_linkage_form_p virtual function. There should be no user visible changes after this commit. gdb/ChangeLog: * ada-lang.c (ada_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. (ada_language::store_sym_names_in_linkage_form_p): New member function. * c-lang.c (c_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. (c_language::store_sym_names_in_linkage_form_p): New member function. (cplus_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. (asm_language_data): Likewise. (asm_language::store_sym_names_in_linkage_form_p): New member function. (minimal_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. (minimal_language::store_sym_names_in_linkage_form_p): New member function. * d-lang.c (d_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. * dwarf2/read.c (dwarf2_physname): Update call to store_sym_names_in_linkage_form_p. * f-lang.c (f_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. * go-lang.c (go_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. * language.c (unknown_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. (unknown_language::store_sym_names_in_linkage_form_p): New member function. (auto_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. (auto_language::store_sym_names_in_linkage_form_p): New member function. * language.h (language_data): Remove la_store_sym_names_in_linkage_form_p member variable. (language_defn::store_sym_names_in_linkage_form_p): New member function. * m2-lang.c (m2_language_data): Remove la_store_sym_names_in_linkage_form_p initializer. * objc-lang.c (objc_language_data): Likewise. * opencl-lang.c (opencl_language_data): Likewise. * p-lang.c (pascal_language_data): Likewise. * rust-lang.c (rust_language_data): Likewise. --- gdb/c-lang.c | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to 'gdb/c-lang.c') diff --git a/gdb/c-lang.c b/gdb/c-lang.c index ecb339c..c8fe630 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -880,7 +880,6 @@ extern const struct language_data c_language_data = array_row_major, macro_expansion_c, &exp_descriptor_c, - true, /* la_store_sym_names_in_linkage_form_p */ c_op_print_tab, /* expression operators for printing */ &c_varobj_ops, }; @@ -943,6 +942,11 @@ public: { c_print_type (type, varstring, stream, show, level, flags); } + + /* See language.h. */ + + bool store_sym_names_in_linkage_form_p () const override + { return true; } }; /* Single instance of the C language class. */ @@ -986,7 +990,6 @@ extern const struct language_data cplus_language_data = array_row_major, macro_expansion_c, &exp_descriptor_c, - false, /* la_store_sym_names_in_linkage_form_p */ c_op_print_tab, /* expression operators for printing */ &cplus_varobj_ops, }; @@ -1195,7 +1198,6 @@ extern const struct language_data asm_language_data = array_row_major, macro_expansion_c, &exp_descriptor_c, - true, /* la_store_sym_names_in_linkage_form_p */ c_op_print_tab, /* expression operators for printing */ &default_varobj_ops, }; @@ -1245,6 +1247,11 @@ public: { c_print_type (type, varstring, stream, show, level, flags); } + + /* See language.h. */ + + bool store_sym_names_in_linkage_form_p () const override + { return true; } }; /* The single instance of the ASM language class. */ @@ -1262,7 +1269,6 @@ extern const struct language_data minimal_language_data = array_row_major, macro_expansion_c, &exp_descriptor_c, - true, /* la_store_sym_names_in_linkage_form_p */ c_op_print_tab, /* expression operators for printing */ &default_varobj_ops, }; @@ -1301,6 +1307,11 @@ public: { c_print_type (type, varstring, stream, show, level, flags); } + + /* See language.h. */ + + bool store_sym_names_in_linkage_form_p () const override + { return true; } }; /* The single instance of the minimal language class. */ -- cgit v1.1