Use filtered output in print_i387_ext
authorTom Tromey <tom@tromey.com>
Sun, 2 Jan 2022 17:40:35 +0000 (10:40 -0700)
committerTom Tromey <tom@tromey.com>
Sun, 2 Jan 2022 17:40:35 +0000 (10:40 -0700)
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.

gdb/i387-tdep.c

index e25fdd7d2f5997843e1a9744f9a8598eccc92caa..2f0b65094572e3e7465045a3a56b68b0e47fcf8f 100644 (file)
@@ -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);