This introduces m2_value_print_inner.
gdb/ChangeLog
2020-03-13 Tom Tromey <tom@tromey.com>
* m2-valprint.c (m2_value_print_inner): New function.
* m2-lang.h (m2_value_print_inner): Declare.
* m2-lang.c (m2_language_defn): Use m2_value_print_inner.
+2020-03-13 Tom Tromey <tom@tromey.com>
+
+ * m2-valprint.c (m2_value_print_inner): New function.
+ * m2-lang.h (m2_value_print_inner): Declare.
+ * m2-lang.c (m2_language_defn): Use m2_value_print_inner.
+
2020-03-13 Tom Tromey <tom@tromey.com>
* opencl-lang.c (opencl_language_defn): Use c_value_print_inner.
m2_print_type, /* Print a type using appropriate syntax */
m2_print_typedef, /* Print a typedef using appropriate syntax */
m2_val_print, /* Print a value using appropriate syntax */
- nullptr, /* la_value_print_inner */
+ m2_value_print_inner, /* la_value_print_inner */
c_value_print, /* Print a top-level value */
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 Modula-2. */
+
+extern void m2_value_print_inner (struct value *, struct ui_file *, int,
+ const struct value_print_options *);
+
extern int get_long_set_bounds (struct type *type, LONGEST *low,
LONGEST *high);
break;
}
}
+
+/* See m2-lang.h. */
+
+void
+m2_value_print_inner (struct value *val, struct ui_file *stream, int recurse,
+ const struct value_print_options *options)
+{
+ m2_val_print (value_type (val), value_embedded_offset (val),
+ value_address (val), stream, recurse, val, options);
+}