aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-30 00:17:22 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-30 00:17:22 +0000
commit4b2e86ce916302e9ae29252747485eefed29aafe (patch)
treee981960a13cf0037ddaae34ef730ad4455792abb
parent6eaccb759aff7e3fdd679d39aabaf773b18dfbd1 (diff)
downloadglibc-4b2e86ce916302e9ae29252747485eefed29aafe.tar
glibc-4b2e86ce916302e9ae29252747485eefed29aafe.tar.gz
glibc-4b2e86ce916302e9ae29252747485eefed29aafe.tar.bz2
glibc-4b2e86ce916302e9ae29252747485eefed29aafe.zip
Update.
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.
-rw-r--r--ChangeLog7
-rw-r--r--sysdeps/libm-i387/s_fdim.S2
-rw-r--r--sysdeps/libm-i387/s_fdimf.S2
-rw-r--r--sysdeps/libm-i387/s_fdiml.S2
4 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index adefded996..34cb64ed8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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]}.
diff --git a/sysdeps/libm-i387/s_fdim.S b/sysdeps/libm-i387/s_fdim.S
index 443c8407c8..7a1e2ffa49 100644
--- a/sysdeps/libm-i387/s_fdim.S
+++ b/sysdeps/libm-i387/s_fdim.S
@@ -30,7 +30,7 @@ ENTRY(__fdim)
sahf
jp 1f
- fsubrp %st(1), %st
+ fsubrp %st, %st(1)
jc 2f
fstp %st(0)
diff --git a/sysdeps/libm-i387/s_fdimf.S b/sysdeps/libm-i387/s_fdimf.S
index acb8df75d4..7e58f6752b 100644
--- a/sysdeps/libm-i387/s_fdimf.S
+++ b/sysdeps/libm-i387/s_fdimf.S
@@ -30,7 +30,7 @@ ENTRY(__fdimf)
sahf
jp 1f
- fsubrp %st(1), %st
+ fsubrp %st, %st(1)
jc 2f
fstp %st(0)
diff --git a/sysdeps/libm-i387/s_fdiml.S b/sysdeps/libm-i387/s_fdiml.S
index 446c2c42fe..7a8c18a5d3 100644
--- a/sysdeps/libm-i387/s_fdiml.S
+++ b/sysdeps/libm-i387/s_fdiml.S
@@ -30,7 +30,7 @@ ENTRY(__fdiml)
sahf
jp 1f
- fsubrp %st(1), %st
+ fsubrp %st, %st(1)
jc 2f
fstp %st(0)