diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-07-08 10:55:56 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2020-09-16 10:16:48 +0100 |
commit | d3355e4dec4966ea32d47fc004e1bf8d9b3a3510 (patch) | |
tree | 51f44976c5ed3637f73a090f87b19c3b8f0b4b79 /gdb/d-lang.c | |
parent | 22c12a6c70a0bf1c292478436f12df0a2d84c2a2 (diff) | |
download | binutils-d3355e4dec4966ea32d47fc004e1bf8d9b3a3510.zip binutils-d3355e4dec4966ea32d47fc004e1bf8d9b3a3510.tar.gz binutils-d3355e4dec4966ea32d47fc004e1bf8d9b3a3510.tar.bz2 |
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.
Diffstat (limited to 'gdb/d-lang.c')
-rw-r--r-- | gdb/d-lang.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/d-lang.c b/gdb/d-lang.c index f75a973..2c6da47 100644 --- a/gdb/d-lang.c +++ b/gdb/d-lang.c @@ -133,7 +133,6 @@ extern const struct language_data d_language_data = array_row_major, macro_expansion_no, &exp_descriptor_c, - false, /* la_store_sym_names_in_linkage_form_p */ d_op_print_tab, /* Expression operators for printing. */ &default_varobj_ops, }; |