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 /sysdeps | |
parent | fa00327fbf80bd0928c0c4babc6680ff1c9f3584 (diff) | |
download | glibc-55f3aaff8c2a31288f9dde795b63b95d04fca341.tar.gz |
* sysdeps/libm-i387/s_finite.S: Use `setne' instead of `setnel'.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/libm-i387/s_finite.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/libm-i387/s_finite.S b/sysdeps/libm-i387/s_finite.S index aa01c5ee45..233155e4d6 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) |