1994-02-12 04:31:52 +03:00
|
|
|
/*
|
1995-04-29 02:43:31 +04:00
|
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
|
|
* Public domain.
|
1994-02-12 04:31:52 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <machine/asm.h>
|
|
|
|
|
1996-06-04 22:00:34 +04:00
|
|
|
RCSID("$NetBSD: s_finite.S,v 1.5 1996/06/04 18:00:34 jtc Exp $")
|
1994-03-12 04:30:22 +03:00
|
|
|
|
1994-02-12 04:31:52 +03:00
|
|
|
ENTRY(finite)
|
|
|
|
movl 8(%esp),%eax
|
|
|
|
andl $0x7ff00000, %eax
|
|
|
|
cmpl $0x7ff00000, %eax
|
1996-06-04 22:00:34 +04:00
|
|
|
setne %al
|
1994-02-12 04:31:52 +03:00
|
|
|
andl $0x000000ff, %eax
|
|
|
|
ret
|