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.c | |
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.c')
-rw-r--r-- | gdb/f-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/f-lang.c b/gdb/f-lang.c index 4f4e8ae..e0a2184 100644 --- a/gdb/f-lang.c +++ b/gdb/f-lang.c @@ -647,7 +647,7 @@ extern const struct language_defn f_language_defn = 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 */ |