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 | 24051bbe843abcdcc108542da195e009c3f19910 (patch) | |
tree | 211eb877dfc66ff1e14ec6d6469280fdc8318ba0 /gdb/f-lang.h | |
parent | c0941be613054fe525891a2898e7d938b8e8ceed (diff) | |
download | gdb-24051bbe843abcdcc108542da195e009c3f19910.zip gdb-24051bbe843abcdcc108542da195e009c3f19910.tar.gz gdb-24051bbe843abcdcc108542da195e009c3f19910.tar.bz2 |
Introduce f_value_print_innner
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.
Diffstat (limited to 'gdb/f-lang.h')
-rw-r--r-- | gdb/f-lang.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/f-lang.h b/gdb/f-lang.h index 9dfbfe5..5cc59ad 100644 --- a/gdb/f-lang.h +++ b/gdb/f-lang.h @@ -41,6 +41,12 @@ extern void f_val_print (struct type *, int, CORE_ADDR, 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. */ |