repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Use INTUSE for
[glibc.git]
/
sysdeps
/
i386
/
fpu
/
s_nearbyintl.S
blob
d74dacb990778feddad21952318aed0c91447ff0
1
/*
2
* Written by J.T. Conklin <jtc@netbsd.org>.
3
* Public domain.
4
*/
5
/* Adapted for use as nearbyint by Ulrich Drepper <drepper@cygnus.com>. */
6
7
#include <machine/asm.h>
8
9
ENTRY(__nearbyintl)
10
fldt 4(%esp)
11
pushl %eax
12
pushl %ecx
13
fnstcw (%esp)
14
movl (%esp), %eax
15
orl $0x20, %eax
16
movl %eax, 4(%esp)
17
fldcw 4(%esp)
18
frndint
19
fclex
20
fldcw (%esp)
21
popl %ecx
22
popl %eax
23
ret
24
END (__nearbyintl)
25
weak_alias (__nearbyintl, nearbyintl)