summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2002-01-13 09:53:20 +0000
committerEli Zaretskii <eliz@gnu.org>2002-01-13 09:53:20 +0000
commit8748626bdf779152500c1afb8051916b2081f06c (patch)
tree44b2f902ebd2cd48b2ffab89251063aeabee1fda
parent408fc22159f7dbf07eff158f05b40d76d0c6d8b9 (diff)
downloadgdb-8748626bdf779152500c1afb8051916b2081f06c.tar.gz
* go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
white space which prevented compilation. Reported by DSK <dsk@student.unsw.edu.au>.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/go32-nat.c14
2 files changed, 11 insertions, 9 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e1232ebf996..803a0a24448 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
+
+ * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
+ white space which prevented compilation. Reported by DSK
+ <dsk@student.unsw.edu.au>.
+
2001-12-18 Kevin Buettner <kevinb@redhat.com>
* i387-nat.c (i387_fill_fxsave): Change type of ``val'' from char
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c
index 1b82a9c5ea0..c96caa1857a 100644
--- a/gdb/go32-nat.c
+++ b/gdb/go32-nat.c
@@ -93,13 +93,13 @@ save_npx (void)
asm ("inb $0xa0, %%al
testb $0x20, %%al
jz 1f
- xorb %% al, %%al
- outb %% al, $0xf0
+ xorb %%al, %%al
+ outb %%al, $0xf0
movb $0x20, %%al
- outb %% al, $0xa0
- outb %% al, $0x20
+ outb %%al, $0xa0
+ outb %%al, $0x20
1:
- fnsave % 0
+ fnsave %0
fwait "
: "=m" (npx)
: /* No input */
@@ -108,10 +108,6 @@ save_npx (void)
/* *INDENT-ON* */
-
-
-
-
/* ------------------------------------------------------------------------- */
/* Reload the contents of the NPX from the global variable `npx'. */