aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2002-01-13 09:51:22 +0000
committerEli Zaretskii <eliz@gnu.org>2002-01-13 09:51:22 +0000
commit82cc503325ef72ccad4d8eaf4a5a23228d778802 (patch)
tree3f843cf371a1c981956697be793caacc824105b6 /gdb
parentfbd3554072496c7dd0436df90cb0b051c63fe313 (diff)
downloadgdb-82cc503325ef72ccad4d8eaf4a5a23228d778802.zip
gdb-82cc503325ef72ccad4d8eaf4a5a23228d778802.tar.gz
gdb-82cc503325ef72ccad4d8eaf4a5a23228d778802.tar.bz2
* go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
white space which prevented compilation. Reported by DSK <dsk@student.unsw.edu.au>.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/go32-nat.c13
2 files changed, 11 insertions, 8 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 264b0ee..1d8f0b4 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>.
+
2002-01-11 Michael Snyder <msnyder@redhat.com>
* symfile.c (build_section_addr_info_from_section_tab):
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c
index e744235..ae8205e 100644
--- a/gdb/go32-nat.c
+++ b/gdb/go32-nat.c
@@ -93,13 +93,13 @@ save_npx (void)
asm ("inb $0xa0, %%al \n\
testb $0x20, %%al \n\
jz 1f \n\
- xorb %% al, %%al \n\
- outb %% al, $0xf0 \n\
+ xorb %%al, %%al \n\
+ outb %%al, $0xf0 \n\
movb $0x20, %%al \n\
- outb %% al, $0xa0 \n\
- outb %% al, $0x20 \n\
+ outb %%al, $0xa0 \n\
+ outb %%al, $0x20 \n\
1: \n\
- fnsave % 0 \n\
+ fnsave %0 \n\
fwait "
: "=m" (npx)
: /* No input */
@@ -109,9 +109,6 @@ save_npx (void)
/* *INDENT-ON* */
-
-
-
/* ------------------------------------------------------------------------- */
/* Reload the contents of the NPX from the global variable `npx'. */