1994-08-19 07:56:44 +04:00
|
|
|
/*
|
1995-04-29 02:43:31 +04:00
|
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
|
|
* Public domain.
|
1994-08-19 07:56:44 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <machine/asm.h>
|
|
|
|
|
1996-06-04 22:00:34 +04:00
|
|
|
RCSID("$NetBSD: s_finitef.S,v 1.4 1996/06/04 18:00:36 jtc Exp $")
|
1994-08-19 07:56:44 +04:00
|
|
|
|
|
|
|
ENTRY(finitef)
|
|
|
|
movl 4(%esp),%eax
|
1996-06-04 22:00:34 +04:00
|
|
|
andl $0x7f800000, %eax
|
|
|
|
cmpl $0x7f800000, %eax
|
|
|
|
setne %al
|
1994-08-19 07:56:44 +04:00
|
|
|
andl $0x000000ff, %eax
|
|
|
|
ret
|