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
Fix exp10 spurious underflows (bug 16560).
[glibc.git]
/
sysdeps
/
x86_64
/
fpu
/
s_finitel.S
blob
9e49796901992f2d6c134f5ebc63073e105b56b1
1
/*
2
* Written by Joe Keane <jgk@jgk.org>.
3
* Adopted for x86-64 by Andreas Jaeger <aj@suse.de>.
4
*/
5
6
#include <machine/asm.h>
7
8
ENTRY(__finitel)
9
movl 16(%rsp),%eax
10
orl $0xffff8000, %eax
11
incl %eax
12
shrl $31, %eax
13
ret
14
END (__finitel)
15
weak_alias (__finitel, finitel)
16
hidden_def (__finitel)