[50 character or so descriptive subject here (for reference)]
Ulrich Drepper
drepper@cygnus.com
Thu Apr 1 00:00:00 GMT 1999
Jesse Thilo <Jesse.Thilo@pobox.com> writes:
> >Description:
> After building `make check' fails executing
> `math/test-float'. Re-running `make check' results in
> failures of other tests in math directory.
Yes, please use this patch:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Index: ChangeLog
===================================================================
RCS file: /glibc/cvsfiles/libc/ChangeLog,v
retrieving revision 1.1944
retrieving revision 1.1945
diff -u -r1.1944 -r1.1945
--- ChangeLog 1999/01/29 16:58:13 1.1944
+++ ChangeLog 1999/01/30 00:17:22 1.1945
@@ -1,3 +1,10 @@
+1999-01-30 Ulrich Drepper <drepper@cygnus.com>
+
+ * sysdeps/libm-i387/s_fdim.S: Reverse arguments of instruction
+ changed in last patch.
+ * sysdeps/libm-i387/s_fdimf.S: Likewise.
+ * sysdeps/libm-i387/s_fdiml.S: Likewise.
+
1999-01-29 Richard Henderson <rth@twiddle.net>
* scripts/config.sub: Recognize alpha{pca5[67],ev[67]}.
Index: sysdeps/libm-i387/s_fdim.S
===================================================================
RCS file: /glibc/cvsfiles/libc/sysdeps/libm-i387/s_fdim.S,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- s_fdim.S 1999/01/29 11:29:24 1.2
+++ s_fdim.S 1999/01/30 00:15:41 1.3
@@ -30,7 +30,7 @@
sahf
jp 1f
- fsubrp %st(1), %st
+ fsubrp %st, %st(1)
jc 2f
fstp %st(0)
Index: sysdeps/libm-i387/s_fdimf.S
===================================================================
RCS file: /glibc/cvsfiles/libc/sysdeps/libm-i387/s_fdimf.S,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- s_fdimf.S 1999/01/29 11:29:16 1.2
+++ s_fdimf.S 1999/01/30 00:15:28 1.3
@@ -30,7 +30,7 @@
sahf
jp 1f
- fsubrp %st(1), %st
+ fsubrp %st, %st(1)
jc 2f
fstp %st(0)
Index: sysdeps/libm-i387/s_fdiml.S
===================================================================
RCS file: /glibc/cvsfiles/libc/sysdeps/libm-i387/s_fdiml.S,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- s_fdiml.S 1999/01/29 11:29:00 1.2
+++ s_fdiml.S 1999/01/30 00:15:16 1.3
@@ -30,7 +30,7 @@
sahf
jp 1f
- fsubrp %st(1), %st
+ fsubrp %st, %st(1)
jc 2f
fstp %st(0)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
---------------. drepper at gnu.org ,-. 1325 Chesapeake Terrace
Ulrich Drepper \ ,-------------------' \ Sunnyvale, CA 94089 USA
Cygnus Solutions `--' drepper at cygnus.com `------------------------
More information about the Libc-alpha
mailing list