mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 01:21:06 +00:00
22 lines
393 B
ArmAsm
22 lines
393 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(__nearbyintl)
|
||
|
fldt 8(%rsp)
|
||
|
fnstcw -4(%rsp)
|
||
|
movl -4(%rsp), %eax
|
||
|
orl $0x20, %eax
|
||
|
movl %eax, -8(%rsp)
|
||
|
fldcw -8(%rsp)
|
||
|
frndint
|
||
|
fclex
|
||
|
fldcw -4(%rsp)
|
||
|
ret
|
||
|
END (__nearbyintl)
|
||
|
weak_alias (__nearbyintl, nearbyintl)
|