aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-02-11 18:10:00 -0700
committerTom Tromey <tom@tromey.com>2022-10-10 10:43:34 -0600
commitc1c7fe59f67f5f4e3ca6f6fea1de46b983be8995 (patch)
tree39375e75f3ddaf1cabccf0d61b20172cf02f2df2
parent3a64633804aca8b4c4852241c70936177664c18a (diff)
downloadgdb-c1c7fe59f67f5f4e3ca6f6fea1de46b983be8995.zip
gdb-c1c7fe59f67f5f4e3ca6f6fea1de46b983be8995.tar.gz
gdb-c1c7fe59f67f5f4e3ca6f6fea1de46b983be8995.tar.bz2
Remove c_emit_char
This renames c_emit_char, removing a layer of indirection.
-rw-r--r--gdb/c-lang.c4
-rw-r--r--gdb/c-lang.h3
-rw-r--r--gdb/language.c9
3 files changed, 2 insertions, 14 deletions
diff --git a/gdb/c-lang.c b/gdb/c-lang.c
index 88ccc8a..d6c56f3 100644
--- a/gdb/c-lang.c
+++ b/gdb/c-lang.c
@@ -144,8 +144,8 @@ classify_type (struct type *elttype, struct gdbarch *gdbarch,
for printing characters and strings is language specific. */
void
-c_emit_char (int c, struct type *type,
- struct ui_file *stream, int quoter)
+language_defn::emitchar (int c, struct type *type,
+ struct ui_file *stream, int quoter) const
{
const char *encoding;
diff --git a/gdb/c-lang.h b/gdb/c-lang.h
index 096eb02..b26996c 100644
--- a/gdb/c-lang.h
+++ b/gdb/c-lang.h
@@ -104,9 +104,6 @@ extern void c_printstr (struct ui_file * stream,
extern void c_language_arch_info (struct gdbarch *gdbarch,
struct language_arch_info *lai);
-extern void c_emit_char (int c, struct type *type,
- struct ui_file *stream, int quoter);
-
/* These are in c-typeprint.c: */
extern void c_type_print_base (struct type *, struct ui_file *,
diff --git a/gdb/language.c b/gdb/language.c
index d3cc14c..114ee3a 100644
--- a/gdb/language.c
+++ b/gdb/language.c
@@ -636,15 +636,6 @@ language_defn::value_print_inner
/* See language.h. */
void
-language_defn::emitchar (int ch, struct type *chtype,
- struct ui_file * stream, int quoter) const
-{
- c_emit_char (ch, chtype, stream, quoter);
-}
-
-/* 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,