mirror of git://sourceware.org/git/glibc.git
Update.
1998-10-30 11:15 Ulrich Drepper <drepper@cygnus.com> * sysdeps/libm-i387/e_fmod.S: Remove invalid operand size suffix. * sysdeps/libm-i387/e_fmodf.S: Likewise. * sysdeps/libm-i387/e_fmodl.S: Likewise. * sysdeps/libm-i387/s_ilogb.S: Likewise. * sysdeps/libm-i387/s_ilogbf.S: Likewise. * sysdeps/libm-i387/s_logb.S: Likewise. * sysdeps/libm-i387/s_logbf.S: Likewise. * sysdeps/libm-i387/s_remquo.S: Likewise. * sysdeps/libm-i387/s_remquof.S: Likewise. * sysdeps/libm-i387/s_remquol.S: Likewise. * sysdeps/libm-i387/s_significand.S: Likewise. * sysdeps/libm-i387/s_significandf.S: Likewise. 1998-10-30 Geoff Keating <geoffk@ozemail.com.au> * sysdeps/unix/sysv/linux/powerpc/syscalls.list: Really correct _llseek. 1998-10-30 Geoff Keating <geoffk@ozemail.com.au> * math/libm-test.c: Loosen deltas for sin(0.9)^2+cos(0.9)^2.
This commit is contained in:
parent
d4f4d1ca99
commit
0e19d4a310
15
ChangeLog
15
ChangeLog
|
|
@ -1,3 +1,18 @@
|
||||||
|
1998-10-30 11:15 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* sysdeps/libm-i387/e_fmod.S: Remove invalid operand size suffix.
|
||||||
|
* sysdeps/libm-i387/e_fmodf.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/e_fmodl.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/s_ilogb.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/s_ilogbf.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/s_logb.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/s_logbf.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/s_remquo.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/s_remquof.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/s_remquol.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/s_significand.S: Likewise.
|
||||||
|
* sysdeps/libm-i387/s_significandf.S: Likewise.
|
||||||
|
|
||||||
1998-10-30 Geoff Keating <geoffk@ozemail.com.au>
|
1998-10-30 Geoff Keating <geoffk@ozemail.com.au>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/powerpc/syscalls.list: Really correct
|
* sysdeps/unix/sysv/linux/powerpc/syscalls.list: Really correct
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@ ENTRY(__ieee754_fmod)
|
||||||
fstsw %ax
|
fstsw %ax
|
||||||
sahf
|
sahf
|
||||||
jp 1b
|
jp 1b
|
||||||
fstpl %st(1)
|
fstp %st(1)
|
||||||
ret
|
ret
|
||||||
END (__ieee754_fmod)
|
END (__ieee754_fmod)
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,6 @@ ENTRY(__ieee754_fmodf)
|
||||||
fstsw %ax
|
fstsw %ax
|
||||||
sahf
|
sahf
|
||||||
jp 1b
|
jp 1b
|
||||||
fstpl %st(1)
|
fstp %st(1)
|
||||||
ret
|
ret
|
||||||
END(__ieee754_fmodf)
|
END(__ieee754_fmodf)
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,6 @@ ENTRY(__ieee754_fmodl)
|
||||||
fstsw %ax
|
fstsw %ax
|
||||||
sahf
|
sahf
|
||||||
jp 1b
|
jp 1b
|
||||||
fstpl %st(1)
|
fstp %st(1)
|
||||||
ret
|
ret
|
||||||
END (__ieee754_fmodl)
|
END (__ieee754_fmodl)
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ ENTRY(__ilogb)
|
||||||
fldl 4(%esp)
|
fldl 4(%esp)
|
||||||
fxtract
|
fxtract
|
||||||
pushl %eax
|
pushl %eax
|
||||||
fstpl %st
|
fstp %st
|
||||||
|
|
||||||
fistpl (%esp)
|
fistpl (%esp)
|
||||||
fwait
|
fwait
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ ENTRY(__ilogbf)
|
||||||
flds 4(%esp)
|
flds 4(%esp)
|
||||||
fxtract
|
fxtract
|
||||||
pushl %eax
|
pushl %eax
|
||||||
fstpl %st
|
fstp %st
|
||||||
|
|
||||||
fistpl (%esp)
|
fistpl (%esp)
|
||||||
fwait
|
fwait
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ RCSID("$NetBSD: s_logb.S,v 1.4 1995/05/09 00:14:30 jtc Exp $")
|
||||||
ENTRY(__logb)
|
ENTRY(__logb)
|
||||||
fldl 4(%esp)
|
fldl 4(%esp)
|
||||||
fxtract
|
fxtract
|
||||||
fstpl %st
|
fstp %st
|
||||||
ret
|
ret
|
||||||
END (__logb)
|
END (__logb)
|
||||||
weak_alias (__logb, logb)
|
weak_alias (__logb, logb)
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ RCSID("$NetBSD: s_logbf.S,v 1.3 1995/05/09 00:15:12 jtc Exp $")
|
||||||
ENTRY(__logbf)
|
ENTRY(__logbf)
|
||||||
flds 4(%esp)
|
flds 4(%esp)
|
||||||
fxtract
|
fxtract
|
||||||
fstpl %st
|
fstp %st
|
||||||
ret
|
ret
|
||||||
END (__logbf)
|
END (__logbf)
|
||||||
weak_alias (__logbf, logbf)
|
weak_alias (__logbf, logbf)
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ ENTRY(__remquo)
|
||||||
fstsw %ax
|
fstsw %ax
|
||||||
sahf
|
sahf
|
||||||
jp 1b
|
jp 1b
|
||||||
fstpl %st(1)
|
fstp %st(1)
|
||||||
/* Compute the congruent of the quotient. */
|
/* Compute the congruent of the quotient. */
|
||||||
movl %eax, %ecx
|
movl %eax, %ecx
|
||||||
shrl $8, %eax
|
shrl $8, %eax
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ ENTRY(__remquof)
|
||||||
fstsw %ax
|
fstsw %ax
|
||||||
sahf
|
sahf
|
||||||
jp 1b
|
jp 1b
|
||||||
fstpl %st(1)
|
fstp %st(1)
|
||||||
/* Compute the congruent of the quotient. */
|
/* Compute the congruent of the quotient. */
|
||||||
movl %eax, %ecx
|
movl %eax, %ecx
|
||||||
shrl $8, %eax
|
shrl $8, %eax
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ ENTRY(__remquol)
|
||||||
fstsw %ax
|
fstsw %ax
|
||||||
sahf
|
sahf
|
||||||
jp 1b
|
jp 1b
|
||||||
fstpl %st(1)
|
fstp %st(1)
|
||||||
/* Compute the congruent of the quotient. */
|
/* Compute the congruent of the quotient. */
|
||||||
movl %eax, %ecx
|
movl %eax, %ecx
|
||||||
shrl $8, %eax
|
shrl $8, %eax
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ RCSID("$NetBSD: s_significand.S,v 1.4 1995/05/09 00:21:47 jtc Exp $")
|
||||||
ENTRY(__significand)
|
ENTRY(__significand)
|
||||||
fldl 4(%esp)
|
fldl 4(%esp)
|
||||||
fxtract
|
fxtract
|
||||||
fstpl %st(1)
|
fstp %st(1)
|
||||||
ret
|
ret
|
||||||
END (__significand)
|
END (__significand)
|
||||||
weak_alias (__significand, significand)
|
weak_alias (__significand, significand)
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ RCSID("$NetBSD: s_significandf.S,v 1.3 1995/05/09 00:24:07 jtc Exp $")
|
||||||
ENTRY(__significandf)
|
ENTRY(__significandf)
|
||||||
flds 4(%esp)
|
flds 4(%esp)
|
||||||
fxtract
|
fxtract
|
||||||
fstpl %st(1)
|
fstp %st(1)
|
||||||
ret
|
ret
|
||||||
END (__significandf)
|
END (__significandf)
|
||||||
weak_alias (__significandf, significandf)
|
weak_alias (__significandf, significandf)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue