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
Update.
[glibc.git]
/
sysdeps
/
libm-i387
/
s_ilogbl.S
blob
1dad93abebb0990aae6fd1b977bf7729874b11df
1
/*
2
* Written by J.T. Conklin <jtc@netbsd.org>.
3
* Changes for long double by Ulrich Drepper <drepper@cygnus.com>
4
* Public domain.
5
*/
6
7
#include <machine/asm.h>
8
9
RCSID("$NetBSD: $")
10
11
ENTRY(__ilogbl)
12
fldt 4(%esp)
13
fxtract
14
pushl %eax
15
fstp %st
16
17
fistpl (%esp)
18
fwait
19
popl %eax
20
21
ret
22
END (__ilogbl)
23
weak_alias (__ilogbl, ilogbl)