repo.or.cz
/
glibc
/
history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated to fedora-glibc-20090427T1419
[glibc/history.git]
/
sysdeps
/
i386
/
fpu
/
s_finite.S
blob
1ae4aed451cbd04409a6a038fd286cc023daa1a2
1
/*
2
* Written by Joe Keane <jgk@jgk.org>.
3
*/
4
5
#include <machine/asm.h>
6
7
ENTRY(__finite)
8
movl 8(%esp),%eax
9
movl $0xFFEFFFFF,%ecx
10
subl %eax,%ecx
11
xorl %ecx,%eax
12
shrl $31, %eax
13
ret
14
END (__finite)
15
weak_alias (__finite, finite)
16
hidden_def (__finite)
17