projects
/
platform
/
upstream
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Get rid of ASM_TYPE_DIRECTIVE{,_PREFIX}.
[platform/upstream/glibc.git]
/
sysdeps
/
i386
/
fpu
/
s_finite.S
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