mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
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:
parent
790e2a1248
commit
d3b67c56fa
@ -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...
|
||||
|
@ -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))
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user