3ef6b85059
Errno is not set and the testcases will fail. Now the scalbln-aliases are removed in i386/m68 and the wrappers are used when calling the scalbln-functions. On ia64 only scalblnf has its own implementation. For scalbln and scalblnl the ieee754/dbl-64 and ieee754/ldbl-96 are used, thus the wrappers are needed, too.
19 lines
321 B
ArmAsm
19 lines
321 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: s_scalbnf.S,v 1.3 1995/05/09 00:19:59 jtc Exp $")
|
|
|
|
ENTRY(__scalbnf)
|
|
fildl 8(%esp)
|
|
flds 4(%esp)
|
|
fscale
|
|
fstp %st(1)
|
|
ret
|
|
END (__scalbnf)
|
|
weak_alias (__scalbnf, scalbnf)
|
|
strong_alias (__scalbnf, __scalblnf)
|