From: Tom Tromey Date: Sat, 12 Feb 2022 01:14:17 +0000 (-0700) Subject: Remove c_printstr X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a3bb6eb36a29e3201bfc4cc53e341f4f98e6cf1;p=binutils-gdb.git Remove c_printstr This renames c_printstr, removing a layer of indirection. --- diff --git a/gdb/c-lang.c b/gdb/c-lang.c index d6c56f31616..437f79c025a 100644 --- a/gdb/c-lang.c +++ b/gdb/c-lang.c @@ -190,10 +190,10 @@ language_defn::printchar (int c, struct type *type, characters, or if FORCE_ELLIPSES. */ void -c_printstr (struct ui_file *stream, struct type *type, - const gdb_byte *string, unsigned int length, - const char *user_encoding, int force_ellipses, - const struct value_print_options *options) +language_defn::printstr (struct ui_file *stream, struct type *type, + const gdb_byte *string, unsigned int length, + const char *user_encoding, int force_ellipses, + const struct value_print_options *options) const { c_string_type str_type; const char *type_encoding; diff --git a/gdb/c-lang.h b/gdb/c-lang.h index b26996c20b1..93515671d80 100644 --- a/gdb/c-lang.h +++ b/gdb/c-lang.h @@ -93,14 +93,6 @@ extern void c_value_print (struct value *, struct ui_file *, extern void c_printchar (int, struct type *, struct ui_file *); -extern void c_printstr (struct ui_file * stream, - struct type *elttype, - const gdb_byte *string, - unsigned int length, - const char *user_encoding, - int force_ellipses, - const struct value_print_options *options); - extern void c_language_arch_info (struct gdbarch *gdbarch, struct language_arch_info *lai); diff --git a/gdb/language.c b/gdb/language.c index 114ee3aedd9..076e429ff55 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -635,18 +635,6 @@ language_defn::value_print_inner /* See language.h. */ -void -language_defn::printstr (struct ui_file *stream, struct type *elttype, - const gdb_byte *string, unsigned int length, - const char *encoding, int force_ellipses, - const struct value_print_options *options) const -{ - c_printstr (stream, elttype, string, length, encoding, force_ellipses, - options); -} - -/* See language.h. */ - void language_defn::print_typedef (struct type *type, struct symbol *new_symbol, struct ui_file *stream) const diff --git a/gdb/rust-lang.c b/gdb/rust-lang.c index 5539884a98f..8673a908698 100644 --- a/gdb/rust-lang.c +++ b/gdb/rust-lang.c @@ -292,8 +292,9 @@ rust_language::printstr (struct ui_file *stream, struct type *type, { /* This is probably some C string, so let's let C deal with it. */ - c_printstr (stream, type, string, length, user_encoding, - force_ellipses, options); + language_defn::printstr (stream, type, string, length, + user_encoding, force_ellipses, + options); return; } }