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_finitef.S
blob
dabb71a115e88f298e99e0d8c97aa1da22b05f84
1
/*
2
* Written by Joe Keane <jgk@jgk.org>.
3
*/
4
5
#include <machine/asm.h>
6
7
ENTRY(__finitef)
8
movl 4(%esp),%eax
9
movl $0xFF7FFFFF,%ecx
10
subl %eax,%ecx
11
xorl %ecx,%eax
12
shrl $31,%eax
13
ret
14
END (__finitef)
15
weak_alias (__finitef, finitef)