mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-20 12:00:06 +00:00
21 lines
371 B
ArmAsm
21 lines
371 B
ArmAsm
|
/*
|
||
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||
|
* Changes for long double by Ulrich Drepper <drepper@cygnus.com>
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <machine/asm.h>
|
||
|
|
||
|
RCSID("$NetBSD: $")
|
||
|
|
||
|
ENTRY(__copysignl)
|
||
|
movl 24(%esp),%edx
|
||
|
movl 12(%esp),%eax
|
||
|
andl $0x8000,%edx
|
||
|
andl $0x7fff,%eax
|
||
|
orl %edx,%eax
|
||
|
movl %eax,12(%esp)
|
||
|
fldl 4(%esp)
|
||
|
ret
|
||
|
weak_alias (__copysignl, copysignl)
|