gdb: remove LA_PRINT_TYPEDEF macro

Remove the LA_PRINT_TYPEDEF macro, replace the single use with the
macros definition.

There should be no user visible changes after this commit.

gdb/ChangeLog:

	* language.h (LA_PRINT_TYPEDEF): Delete.
	* typeprint.c (typedef_print): Call print_typedef directly on the
	current_language object.
This commit is contained in:
Andrew Burgess 2020-08-14 14:52:26 +01:00
parent 790e2a1248
commit d3b67c56fa
3 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2020-10-23 Andrew Burgess <andrew.burgess@embecosm.com>
* language.h (LA_PRINT_TYPEDEF): Delete.
* typeprint.c (typedef_print): Call print_typedef directly on the
current_language object.
2020-10-23 Andrew Burgess <andrew.burgess@embecosm.com>
* m2-exp.y (m2_parse): Rename to...

View File

@ -644,9 +644,6 @@ extern enum language set_language (enum language);
#define LA_PRINT_TYPE(type,varstring,stream,show,level,flags) \
(current_language->print_type(type,varstring,stream,show,level,flags))
#define LA_PRINT_TYPEDEF(type,new_symbol,stream) \
(current_language->print_typedef (type,new_symbol,stream))
#define LA_VALUE_PRINT(val,stream,options) \
(current_language->value_print (val,stream,options))

View File

@ -358,7 +358,7 @@ typedef_hash_table::find_typedef (const struct type_print_options *flags,
void
typedef_print (struct type *type, struct symbol *newobj, struct ui_file *stream)
{
LA_PRINT_TYPEDEF (type, newobj, stream);
current_language->print_typedef (type, newobj, stream);
}
/* Print a description of a type TYPE in the form of a declaration of a