2.9
[glibc/nacl-glibc.git] / sysdeps / i386 / fpu / s_finitel.S
blobcce90e18fc2fc42eec590409f8c14bb191e5f323
1 /*
2  * Written by Joe Keane <jgk@jgk.org>.
3  */
5 #include <machine/asm.h>
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)
15 hidden_def (__finitel)