[PATCH 3/9] gdb: remove LA_PRINT_TYPEDEF macro

Andrew Burgess andrew.burgess@embecosm.com
Mon Oct 12 14:46:31 GMT 2020


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.
---
 gdb/ChangeLog   | 6 ++++++
 gdb/language.h  | 3 ---
 gdb/typeprint.c | 2 +-
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/gdb/language.h b/gdb/language.h
index 3ee6476cbbb..3452149c9ca 100644
--- a/gdb/language.h
+++ b/gdb/language.h
@@ -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))
 
diff --git a/gdb/typeprint.c b/gdb/typeprint.c
index 82ca4257962..40ad239eaef 100644
--- a/gdb/typeprint.c
+++ b/gdb/typeprint.c
@@ -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
-- 
2.25.4



More information about the Gdb-patches mailing list