diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-04 06:56:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-04 06:56:47 +0000 |
commit | 55f3aaff8c2a31288f9dde795b63b95d04fca341 (patch) | |
tree | 10b5308ca810947c3cabd3da7c28206c35c21570 | |
parent | fa00327fbf80bd0928c0c4babc6680ff1c9f3584 (diff) | |
download | glibc-55f3aaff8c2a31288f9dde795b63b95d04fca341.zip glibc-55f3aaff8c2a31288f9dde795b63b95d04fca341.tar.gz glibc-55f3aaff8c2a31288f9dde795b63b95d04fca341.tar.bz2 |
* sysdeps/libm-i387/s_finite.S: Use `setne' instead of `setnel'.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | po/es.mo | bin | 15682 -> 21852 bytes | |||
-rw-r--r-- | po/ko.mo | bin | 15682 -> 18129 bytes | |||
-rw-r--r-- | sysdeps/libm-i387/s_finite.S | 2 |
4 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ Tue Jun 4 02:25:44 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> - * sysdeps/libm-i387/s_finite.S: Use %eax instead of %al in setnel insn. + * sysdeps/libm-i387/s_finite.S: Use `setne' instead of `setnel'. * intl/l10nflist.c: Fix conditional on #include <argz.h>. diff --git a/sysdeps/libm-i387/s_finite.S b/sysdeps/libm-i387/s_finite.S index aa01c5e..233155e 100644 --- a/sysdeps/libm-i387/s_finite.S +++ b/sysdeps/libm-i387/s_finite.S @@ -11,7 +11,7 @@ ENTRY(__finite) movl 8(%esp),%eax andl $0x7ff00000, %eax cmpl $0x7ff00000, %eax - setnel %eax + setne %al andl $0x000000ff, %eax ret weak_alias (__finite, finite) |