mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-20 12:00:06 +00:00
20 lines
339 B
ArmAsm
20 lines
339 B
ArmAsm
|
/*
|
||
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||
|
* Public domain.
|
||
|
*
|
||
|
* Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
|
||
|
*/
|
||
|
|
||
|
#include <machine/asm.h>
|
||
|
|
||
|
RCSID("$NetBSD: $")
|
||
|
|
||
|
ENTRY(__finitel)
|
||
|
movl 12(%esp),%eax
|
||
|
andl $0x7fff, %eax
|
||
|
cmpl $0x7fff, %eax
|
||
|
setne %al
|
||
|
andl $0x000000ff, %eax
|
||
|
ret
|
||
|
weak_alias (__finitel, finitel)
|