diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-02 10:40:35 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-01-02 10:40:35 -0700 |
commit | d365c1c51c909080d4b080a7437e61205a9c4f69 (patch) | |
tree | 9757925bb9d5c90dc9c82638af51f21ff08996c1 | |
parent | a2c5833233df078288c791c348a265c96c6182da (diff) | |
download | gdb-d365c1c51c909080d4b080a7437e61205a9c4f69.zip gdb-d365c1c51c909080d4b080a7437e61205a9c4f69.tar.gz gdb-d365c1c51c909080d4b080a7437e61205a9c4f69.tar.bz2 |
Use filtered output in print_i387_ext
print_i387_ext mostly uses filtered output, but one call in the middle
of the function uses the _unfiltered form. This patch fixes this
call. I'm checking this in as obvious.
-rw-r--r-- | gdb/i387-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c index e25fdd7..2f0b650 100644 --- a/gdb/i387-tdep.c +++ b/gdb/i387-tdep.c @@ -70,7 +70,7 @@ print_i387_ext (struct gdbarch *gdbarch, fprintf_filtered (file, " %cInf", (sign ? '-' : '+')); else if (sign && fraction[0] == 0x00000000 && fraction[1] == 0x40000000) /* Real Indefinite (QNaN). */ - fputs_unfiltered (" Real Indefinite (QNaN)", file); + fputs_filtered (" Real Indefinite (QNaN)", file); else if (fraction[1] & 0x40000000) /* QNaN. */ fputs_filtered (" QNaN", file); |