* i387-tdep.c (print_i387_status_word): Fix printing of Stack
authorMark Kettenis <kettenis@gnu.org>
Fri, 9 Mar 2001 16:14:55 +0000 (16:14 +0000)
committerMark Kettenis <kettenis@gnu.org>
Fri, 9 Mar 2001 16:14:55 +0000 (16:14 +0000)
fault flag.  It is bit 6 of the x87 FPU status word, not bit 7.

gdb/ChangeLog
gdb/i387-tdep.c

index a863008..0eb3003 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-09  Mark Kettenis  <kettenis@gnu.org>
+
+       * i387-tdep.c (print_i387_status_word): Fix printing of Stack
+       fault flag.  It is bit 6 of the x87 FPU status word, not bit 7.
+
 2001-03-08  Andrew Cagney  <ac131313@redhat.com>
 
        * configure.host (m88*-harris-cxux*): Mark as obsolete.
index b7a9554..e221b0c 100644 (file)
@@ -255,7 +255,7 @@ print_i387_status_word (unsigned int status)
   puts_filtered ("  ");
   printf_filtered (" %s", (status & 0x0080) ? "ES" : "  ");
   puts_filtered ("  ");
-  printf_filtered (" %s", (status & 0x0080) ? "SF" : "  ");
+  printf_filtered (" %s", (status & 0x0040) ? "SF" : "  ");
   puts_filtered ("  ");
   printf_filtered (" %s", (status & 0x0100) ? "C0" : "  ");
   printf_filtered (" %s", (status & 0x0200) ? "C1" : "  ");