This introduces f_value_print_innner.
gdb/ChangeLog
2020-03-13 Tom Tromey <tom@tromey.com>
* f-valprint.c (f_value_print_innner): New function.
* f-lang.h (f_value_print_innner): Declare.
* f-lang.c (f_language_defn): Use f_value_print_innner.
+2020-03-13 Tom Tromey <tom@tromey.com>
+
+ * f-valprint.c (f_value_print_innner): New function.
+ * f-lang.h (f_value_print_innner): Declare.
+ * f-lang.c (f_language_defn): Use f_value_print_innner.
+
2020-03-13 Tom Tromey <tom@tromey.com>
* p-valprint.c (pascal_value_print_inner): New function.
f_print_type, /* Print a type using appropriate syntax */
f_print_typedef, /* Print a typedef using appropriate syntax */
f_val_print, /* Print a value using appropriate syntax */
- nullptr, /* la_value_print_inner */
+ f_value_print_innner, /* la_value_print_inner */
c_value_print, /* FIXME */
default_read_var_value, /* la_read_var_value */
NULL, /* Language specific skip_trampoline */
struct value *,
const struct value_print_options *);
+/* Implement la_value_print_inner for Fortran. */
+
+extern void f_value_print_innner (struct value *val, struct ui_file *stream,
+ int recurse,
+ const struct value_print_options *options);
+
/* Language-specific data structures */
/* A common block. */
}
}
+/* See f-lang.h. */
+
+void
+f_value_print_innner (struct value *val, struct ui_file *stream, int recurse,
+ const struct value_print_options *options)
+{
+ f_val_print (value_type (val), value_embedded_offset (val),
+ value_address (val), stream, recurse, val, options);
+}
+
static void
info_common_command_for_block (const struct block *block, const char *comname,
int *any_printed)