NetBSD/lib/libm/arch/i387/s_scalbnf.S
fvdl 8ecba6c681 Modify the i387 code so that it can be shared between the i386 port
and the x86_64 port. XXX some files should be distinct.
2001-06-19 00:26:29 +00:00

20 lines
350 B
ArmAsm

/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
#include "abi.h"
RCSID("$NetBSD: s_scalbnf.S,v 1.5 2001/06/19 00:26:30 fvdl Exp $")
ENTRY(scalbnf)
XMM_TWO_ARG_FLOAT_PROLOGUE
fildl ARG_FLOAT_TWO
flds ARG_FLOAT_ONE
fscale
fstp %st(1) /* bug fix for fp stack overflow */
XMM_FLOAT_EPILOGUE
ret