aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-01-02 13:56:42 -0700
committerTom Tromey <tom@tromey.com>2022-03-29 12:46:25 -0600
commit179d59a3ee651b593e887367553515e64cdc5cde (patch)
treebc0c8517e60e748adebddf45a51d3b9f2553650e /gdb/utils.c
parentRemove ui_out_flag::unfiltered_output (diff)
downloadbinutils-gdb-179d59a3ee651b593e887367553515e64cdc5cde.tar.gz
binutils-gdb-179d59a3ee651b593e887367553515e64cdc5cde.tar.bz2
binutils-gdb-179d59a3ee651b593e887367553515e64cdc5cde.zip
Remove vfprintf_styled
Nothing calls vfprintf_styled any more, so remove it.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r--gdb/utils.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/gdb/utils.c b/gdb/utils.c
index bc0cdd05755..8d3a89cf036 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -1837,17 +1837,6 @@ fprintf_styled (struct ui_file *stream, const ui_file_style &style,
stream->emit_style_escape (ui_file_style ());
}
-/* See utils.h. */
-
-void
-vfprintf_styled (struct ui_file *stream, const ui_file_style &style,
- const char *format, va_list args)
-{
- stream->emit_style_escape (style);
- gdb_vprintf (stream, format, args);
- stream->emit_style_escape (ui_file_style ());
-}
-
void
gdb_printf (const char *format, ...)
{