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