mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 17:11:06 +00:00
16 lines
244 B
ArmAsm
16 lines
244 B
ArmAsm
/*
|
|
* Written by Joe Keane <jgk@jgk.org>.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
ENTRY(__finitef)
|
|
movl 4(%esp),%eax
|
|
movl $0xFF7FFFFF,%ecx
|
|
subl %eax,%ecx
|
|
xorl %ecx,%eax
|
|
shrl $31,%eax
|
|
ret
|
|
END (__finitef)
|
|
weak_alias (__finitef, finitef)
|