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_finitel.S
blob
acc5ad4cd04e495f5a0f5a8042614799de9bf73b
1
/*
2
* Written by Joe Keane <jgk@jgk.org>.
3
*/
4
5
#include <machine/asm.h>
6
7
ENTRY(__finitel)
8
movl 12(%esp),%eax
9
orl $0xffff8000, %eax
10
incl %eax
11
shrl $31, %eax
12
ret
13
END (__finitel)
14
weak_alias (__finitel, finitel)