forked from Imagelibrary/binutils-gdb
gdb: Convert language la_print_array_index field to a method
This commit changes the language_data::la_print_array_index function pointer member variable into a member function of language_defn. There should be no user visible changes after this commit. gdb/ChangeLog: * ada-lang.c (ada_print_array_index): Delete function, move implementation to... (ada_language::print_array_index): ...here. (ada_language_data): Delete la_print_array_index initializer. * c-lang.c (c_language_data): Likewise. (cplus_language_data): Likewise. (minimal_language_data): Likewise. * d-lang.c (d_language_data): Likewise. * f-lang.c (f_language_data): Likewise. * go-lang.c (go_language_data): Likewise. * language.c (default_print_array_index): Delete function, move implementation to... (language_defn::print_array_index): ...here. (unknown_language_data): Delete la_print_array_index initializer. (auto_language_data): Likewise. * language.h (struct language_data): Delete la_print_array_index field. (language_defn::print_array_index): New member function. (LA_PRINT_ARRAY_INDEX): Update. (default_print_array_index): Delete declaration. * m2-lang.c (m2_language_data): Delete la_print_array_index 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.
This commit is contained in:
@@ -650,12 +650,12 @@ default_word_break_characters (void)
|
||||
return " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
|
||||
}
|
||||
|
||||
/* Print the index of array elements using the C99 syntax. */
|
||||
/* See language.h. */
|
||||
|
||||
void
|
||||
default_print_array_index (struct type *index_type, LONGEST index,
|
||||
struct ui_file *stream,
|
||||
const struct value_print_options *options)
|
||||
language_defn::print_array_index (struct type *index_type, LONGEST index,
|
||||
struct ui_file *stream,
|
||||
const value_print_options *options) const
|
||||
{
|
||||
struct value *index_value = value_from_longest (index_type, index);
|
||||
|
||||
@@ -849,7 +849,6 @@ extern const struct language_data unknown_language_data =
|
||||
default_word_break_characters,
|
||||
default_collect_symbol_completion_matches,
|
||||
unknown_language_arch_info, /* la_language_arch_info. */
|
||||
default_print_array_index,
|
||||
default_pass_by_reference,
|
||||
c_watch_location_expression,
|
||||
NULL, /* la_get_symbol_name_matcher */
|
||||
@@ -914,7 +913,6 @@ extern const struct language_data auto_language_data =
|
||||
default_word_break_characters,
|
||||
default_collect_symbol_completion_matches,
|
||||
unknown_language_arch_info, /* la_language_arch_info. */
|
||||
default_print_array_index,
|
||||
default_pass_by_reference,
|
||||
c_watch_location_expression,
|
||||
NULL, /* la_get_symbol_name_matcher */
|
||||
|
||||
Reference in New Issue
Block a user