84fc678011
Wrong mask was used in s_finitef.S.
17 lines
284 B
ArmAsm
17 lines
284 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: s_finite.S,v 1.5 1996/06/04 18:00:34 jtc Exp $")
|
|
|
|
ENTRY(finite)
|
|
movl 8(%esp),%eax
|
|
andl $0x7ff00000, %eax
|
|
cmpl $0x7ff00000, %eax
|
|
setne %al
|
|
andl $0x000000ff, %eax
|
|
ret
|