Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 30 Jan 1999 00:17:22 +0000 (00:17 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 30 Jan 1999 00:17:22 +0000 (00:17 +0000)
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.

ChangeLog
sysdeps/libm-i387/s_fdim.S
sysdeps/libm-i387/s_fdimf.S
sysdeps/libm-i387/s_fdiml.S

index adefded..34cb64e 100644 (file)
--- 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]}.
index 443c840..7a1e2ff 100644 (file)
@@ -30,7 +30,7 @@ ENTRY(__fdim)
        sahf
        jp      1f
 
-       fsubrp  %st(1), %st
+       fsubrp  %st, %st(1)
        jc      2f
 
        fstp    %st(0)
index acb8df7..7e58f67 100644 (file)
@@ -30,7 +30,7 @@ ENTRY(__fdimf)
        sahf
        jp      1f
 
-       fsubrp  %st(1), %st
+       fsubrp  %st, %st(1)
        jc      2f
 
        fstp    %st(0)
index 446c2c4..7a8c18a 100644 (file)
@@ -30,7 +30,7 @@ ENTRY(__fdiml)
        sahf
        jp      1f
 
-       fsubrp  %st(1), %st
+       fsubrp  %st, %st(1)
        jc      2f
 
        fstp    %st(0)