From: Roland McGrath Date: Tue, 4 Jun 1996 06:56:47 +0000 (+0000) Subject: * sysdeps/libm-i387/s_finite.S: Use `setne' instead of `setnel'. X-Git-Tag: cvs/libc-960604~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55f3aaff8c2a31288f9dde795b63b95d04fca341;p=thirdparty%2Fglibc.git * sysdeps/libm-i387/s_finite.S: Use `setne' instead of `setnel'. --- diff --git a/ChangeLog b/ChangeLog index 437648e4d14..90035c3aff6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ Tue Jun 4 02:25:44 1996 Roland McGrath - * 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 . diff --git a/po/es.mo b/po/es.mo index 66df3757f5d..2560d634ae3 100644 Binary files a/po/es.mo and b/po/es.mo differ diff --git a/po/ko.mo b/po/ko.mo index 66df3757f5d..d0461239c2e 100644 Binary files a/po/ko.mo and b/po/ko.mo differ diff --git a/sysdeps/libm-i387/s_finite.S b/sysdeps/libm-i387/s_finite.S index aa01c5ee458..233155e4d63 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)