diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-30 00:17:22 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-30 00:17:22 +0000 |
commit | 4b2e86ce916302e9ae29252747485eefed29aafe (patch) | |
tree | e981960a13cf0037ddaae34ef730ad4455792abb | |
parent | 6eaccb759aff7e3fdd679d39aabaf773b18dfbd1 (diff) | |
download | glibc-4b2e86ce916302e9ae29252747485eefed29aafe.zip glibc-4b2e86ce916302e9ae29252747485eefed29aafe.tar.gz glibc-4b2e86ce916302e9ae29252747485eefed29aafe.tar.bz2 |
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-- | ChangeLog | 7 | ||||
-rw-r--r-- | sysdeps/libm-i387/s_fdim.S | 2 | ||||
-rw-r--r-- | sysdeps/libm-i387/s_fdimf.S | 2 | ||||
-rw-r--r-- | sysdeps/libm-i387/s_fdiml.S | 2 |
4 files changed, 10 insertions, 3 deletions
@@ -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 443c840..7a1e2ff 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 acb8df7..7e58f67 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 446c2c4..7a8c18a 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) |