NetBSD/lib/libm/arch/i387/s_ilogb.S

24 lines
303 B
ArmAsm
Raw Normal View History

1994-02-18 05:50:11 +03:00
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
1994-02-18 05:50:11 +03:00
*/
#include <machine/asm.h>
1995-05-09 03:55:16 +04:00
RCSID("$NetBSD: s_ilogb.S,v 1.4 1995/05/09 00:06:28 jtc Exp $")
1994-02-18 05:50:11 +03:00
ENTRY(ilogb)
pushl %esp
movl %esp,%ebp
subl $4,%esp
fldl 8(%ebp)
fxtract
fstpl %st
fistpl -4(%ebp)
movl -4(%ebp),%eax
leave
ret