mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 07:20:11 +00:00
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
315 B
ArmAsm
19 lines
315 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: s_scalbn.S,v 1.4 1995/05/09 00:19:06 jtc Exp $")
|
|
|
|
ENTRY(__scalbn)
|
|
fildl 12(%esp)
|
|
fldl 4(%esp)
|
|
fscale
|
|
fstp %st(1)
|
|
ret
|
|
END (__scalbn)
|
|
weak_alias (__scalbn, scalbn)
|
|
strong_alias (__scalbn, __scalbln)
|