aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/language.h3
-rw-r--r--gdb/typeprint.c2
3 files changed, 7 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e9ab8ec..c517470 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,11 @@
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...
(m2_language::parser): ...this. Update function signature.
* m2-lang.c (m2_printchar): Renamed to m2_language::printchar.
diff --git a/gdb/language.h b/gdb/language.h
index 3ee6476..3452149 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 82ca425..40ad239 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