]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
authorEli Zaretskii <eliz@gnu.org>
Sun, 13 Jan 2002 09:51:22 +0000 (09:51 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 13 Jan 2002 09:51:22 +0000 (09:51 +0000)
white space which prevented compilation.  Reported by DSK
<dsk@student.unsw.edu.au>.

gdb/ChangeLog
gdb/go32-nat.c

index 264b0ee4ebdbfa0e7f58c5d778099e004a9d2126..1d8f0b48f3a7f34cdc21b083c675da28b4187fe0 100644 (file)
@@ -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):
index e7442358c12f373440d4b50d16e986f3b2d03dbe..ae8205e29965ec9a06d6180a39aceec2a909fd03 100644 (file)
@@ -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 %          \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'.  */