diff options
author | Tom Tromey <tom@tromey.com> | 2020-03-13 17:39:52 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-03-13 18:03:40 -0600 |
commit | 26792ee0345c09bd1c76f3ee0e16ed15ab7215b9 (patch) | |
tree | f4247dc2530b2e306004f9d8dd70dceebe528158 /gdb/ada-lang.h | |
parent | 24051bbe843abcdcc108542da195e009c3f19910 (diff) | |
download | gdb-26792ee0345c09bd1c76f3ee0e16ed15ab7215b9.zip gdb-26792ee0345c09bd1c76f3ee0e16ed15ab7215b9.tar.gz gdb-26792ee0345c09bd1c76f3ee0e16ed15ab7215b9.tar.bz2 |
Introduce ada_value_print_inner
This introduces ada_value_print_inner.
gdb/ChangeLog
2020-03-13 Tom Tromey <tom@tromey.com>
* ada-valprint.c (ada_value_print_inner): New function.
* ada-lang.h (ada_value_print_inner): Declare.
* ada-lang.c (ada_language_defn): Use ada_value_print_inner.
Diffstat (limited to 'gdb/ada-lang.h')
-rw-r--r-- | gdb/ada-lang.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/ada-lang.h b/gdb/ada-lang.h index e388c75..f7c0951 100644 --- a/gdb/ada-lang.h +++ b/gdb/ada-lang.h @@ -169,6 +169,11 @@ extern void ada_val_print (struct type *, int, CORE_ADDR, struct value *, const struct value_print_options *); +/* Implement la_value_print_inner for Ada. */ + +extern void ada_value_print_inner (struct value *, struct ui_file *, int, + const struct value_print_options *); + extern void ada_value_print (struct value *, struct ui_file *, const struct value_print_options *); |