mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 00:00:06 +00:00
ec91ea7ccb
2000-02-14 Ulrich Drepper <drepper@redhat.com> * sysdeps/posix/sigwait.c: Don't look for signal 0 since it does not exist. Patch by Miloslav Trmac <mitr@volny.cz> (PR libc/1601). * sysdeps/i386/fpu/s_nearbyint.S: Disable raising exception, not enable it. Patch by Miloslav Trmac <mitr@volny.cz> (PR libc/1600). * sysdeps/i386/fpu/s_nearbyintf.S: Likewise. * sysdeps/i386/fpu/s_nearbyintf.l: Likewise.
26 lines
431 B
ArmAsm
26 lines
431 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
|
|
|
|
#include <machine/asm.h>
|
|
|
|
ENTRY(__nearbyintf)
|
|
flds 4(%esp)
|
|
pushl %eax
|
|
pushl %ecx
|
|
fnstcw (%esp)
|
|
movl (%esp), %eax
|
|
orl $0x20, %eax
|
|
movl %eax, 4(%esp)
|
|
fldcw 4(%esp)
|
|
frndint
|
|
fclex
|
|
fldcw (%esp)
|
|
popl %ecx
|
|
popl %eax
|
|
ret
|
|
END (__nearbyintf)
|
|
weak_alias (__nearbyintf, nearbyintf)
|