diff options
Diffstat (limited to 'gdb/p-lang.c')
-rw-r--r-- | gdb/p-lang.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gdb/p-lang.c b/gdb/p-lang.c index 808e9e5..ff3ba3b 100644 --- a/gdb/p-lang.c +++ b/gdb/p-lang.c @@ -400,7 +400,6 @@ extern const struct language_data pascal_language_data = pascal_emit_char, /* Print a single char */ pascal_print_typedef, /* Print a typedef using appropriate syntax */ pascal_value_print_inner, /* la_value_print_inner */ - pascal_value_print, /* Print a top-level value */ "this", /* name_of_this */ false, /* la_store_sym_names_in_linkage_form_p */ basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */ @@ -478,6 +477,14 @@ public: { pascal_print_type (type, varstring, stream, show, level, flags); } + + /* See language.h. */ + + void value_print (struct value *val, struct ui_file *stream, + const struct value_print_options *options) const override + { + return pascal_value_print (val, stream, options); + } }; /* Single instance of the Pascal language class. */ |