This is the mail archive of the libc-alpha@cygnus.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: glibcbug


Alice Anna Reese <aareese@isn.net> writes:

> >Description:Make check fails math/test-double.out Error 1

Apply the appended patch.

-- 
---------------.      drepper at gnu.org  ,-.   1325 Chesapeake Terrace
Ulrich Drepper  \    ,-------------------'   \  Sunnyvale, CA 94089 USA
Cygnus Solutions `--' drepper at cygnus.com   `------------------------

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]