diff options
author | Tom Tromey <tom@tromey.com> | 2022-02-11 18:14:17 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-10-10 10:43:34 -0600 |
commit | 3a3bb6eb36a29e3201bfc4cc53e341f4f98e6cf1 (patch) | |
tree | 22ec337890716a5e76f998328a2b6cafedb833a8 /gdb/language.c | |
parent | c1c7fe59f67f5f4e3ca6f6fea1de46b983be8995 (diff) | |
download | gdb-3a3bb6eb36a29e3201bfc4cc53e341f4f98e6cf1.zip gdb-3a3bb6eb36a29e3201bfc4cc53e341f4f98e6cf1.tar.gz gdb-3a3bb6eb36a29e3201bfc4cc53e341f4f98e6cf1.tar.bz2 |
Remove c_printstr
This renames c_printstr, removing a layer of indirection.
Diffstat (limited to 'gdb/language.c')
-rw-r--r-- | gdb/language.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/language.c b/gdb/language.c index 114ee3a..076e429 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -636,18 +636,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 { |