mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
5980be9b3c
This work is based in part on code from NetBSD libm, libc and kernel. The library is partly public domain and partly BSD-style licensed.
24 lines
353 B
ArmAsm
24 lines
353 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@NetBSD.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: s_ilogbl.S,v 1.1 2011/07/28 22:32:28 joerg Exp $")
|
|
|
|
#include "abi.h"
|
|
|
|
ENTRY(ilogbl)
|
|
fldt ARG_LONG_DOUBLE_ONE
|
|
fxtract
|
|
fstp %st
|
|
#ifdef __i386__
|
|
pushl %eax
|
|
fistpl 0(%esp)
|
|
popl %eax
|
|
#else
|
|
fistpl -4(%rsp)
|
|
movl -4(%rsp), %eax
|
|
#endif
|
|
ret
|