* go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous

white space which prevented compilation.  Reported by DSK
	<dsk@student.unsw.edu.au>.
This commit is contained in:
Eli Zaretskii
2002-01-13 09:53:20 +00:00
parent 8cb7a427ec
commit 2c531baee3
2 changed files with 11 additions and 9 deletions

View 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>.
2001-12-18 Kevin Buettner <kevinb@redhat.com> 2001-12-18 Kevin Buettner <kevinb@redhat.com>
* i387-nat.c (i387_fill_fxsave): Change type of ``val'' from char * i387-nat.c (i387_fill_fxsave): Change type of ``val'' from char

View File

@@ -93,13 +93,13 @@ save_npx (void)
asm ("inb $0xa0, %%al asm ("inb $0xa0, %%al
testb $0x20, %%al testb $0x20, %%al
jz 1f jz 1f
xorb %% al, %%al xorb %%al, %%al
outb %% al, $0xf0 outb %%al, $0xf0
movb $0x20, %%al movb $0x20, %%al
outb %% al, $0xa0 outb %%al, $0xa0
outb %% al, $0x20 outb %%al, $0x20
1: 1:
fnsave % 0 fnsave %0
fwait " fwait "
: "=m" (npx) : "=m" (npx)
: /* No input */ : /* No input */
@@ -108,10 +108,6 @@ save_npx (void)
/* *INDENT-ON* */ /* *INDENT-ON* */
/* ------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------- */
/* Reload the contents of the NPX from the global variable `npx'. */ /* Reload the contents of the NPX from the global variable `npx'. */