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 /sysdeps/libm-i387 | |
parent | 6eaccb759aff7e3fdd679d39aabaf773b18dfbd1 (diff) | |
download | glibc-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.
Diffstat (limited to 'sysdeps/libm-i387')
-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 |
3 files changed, 3 insertions, 3 deletions
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) |