mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-16 18:10:11 +00:00
16 lines
238 B
ArmAsm
16 lines
238 B
ArmAsm
/*
|
|
* Written by Joe Keane <jgk@jgk.org>.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
ENTRY(__finite)
|
|
movl 8(%esp),%eax
|
|
movl $0xFFEFFFFF,%ecx
|
|
subl %eax,%ecx
|
|
xorl %ecx,%eax
|
|
shrl $31, %eax
|
|
ret
|
|
END (__finite)
|
|
weak_alias (__finite, finite)
|