diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-02 11:36:44 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-03-29 12:46:24 -0600 |
commit | 0426ad513f93bb1c5805988e60d6f87fbe738860 (patch) | |
tree | 6ad0f94f9b2a907623df38db9dd7727fe80f5d51 /gdb/arm-tdep.c | |
parent | 19a7b8ab871b92dee32a0ebffe274388d3426564 (diff) | |
download | fsf-binutils-gdb-0426ad513f93bb1c5805988e60d6f87fbe738860.zip fsf-binutils-gdb-0426ad513f93bb1c5805988e60d6f87fbe738860.tar.gz fsf-binutils-gdb-0426ad513f93bb1c5805988e60d6f87fbe738860.tar.bz2 |
Unify gdb puts functions
Now that filtered and unfiltered output can be treated identically, we
can unify the puts family of functions. This is done under the name
"gdb_puts". Most of this patch was written by script.
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index d216d1d..5cd5b16 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -4015,15 +4015,15 @@ static void print_fpu_flags (struct ui_file *file, int flags) { if (flags & (1 << 0)) - fputs_filtered ("IVO ", file); + gdb_puts ("IVO ", file); if (flags & (1 << 1)) - fputs_filtered ("DVZ ", file); + gdb_puts ("DVZ ", file); if (flags & (1 << 2)) - fputs_filtered ("OFL ", file); + gdb_puts ("OFL ", file); if (flags & (1 << 3)) - fputs_filtered ("UFL ", file); + gdb_puts ("UFL ", file); if (flags & (1 << 4)) - fputs_filtered ("INX ", file); + gdb_puts ("INX ", file); fputc_filtered ('\n', file); } @@ -4042,10 +4042,10 @@ arm_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, else fprintf_filtered (file, _("Software FPU type %d\n"), type); /* i18n: [floating point unit] mask */ - fputs_filtered (_("mask: "), file); + gdb_puts (_("mask: "), file); print_fpu_flags (file, status >> 16); /* i18n: [floating point unit] flags */ - fputs_filtered (_("flags: "), file); + gdb_puts (_("flags: "), file); print_fpu_flags (file, status); } |