Introduce m2_value_print_inner

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.
This commit is contained in:
Tom Tromey 2020-03-13 17:39:52 -06:00
parent 6218219002
commit 62c4663d3c
4 changed files with 22 additions and 1 deletions

View File

@ -1,3 +1,9 @@
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.

View File

@ -394,7 +394,7 @@ extern const struct language_defn m2_language_defn =
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 */

View File

@ -40,6 +40,11 @@ extern void m2_val_print (struct type *, int, CORE_ADDR,
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);

View File

@ -503,3 +503,13 @@ m2_val_print (struct type *type, int embedded_offset,
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);
}