about summary refs log tree commit diff
path: root/sysdeps/x86_64/fpu/s_copysignl.S
blob: 3ec388a6efdabc1254d28c099f07595b374e7886 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Public domain.
 */

#include <libm-alias-ldouble.h>
#include <machine/asm.h>

RCSID("$NetBSD: $")

ENTRY(__copysignl)
	movl	32(%rsp),%edx
	movl	16(%rsp),%eax
	andl	$0x8000,%edx
	andl	$0x7fff,%eax
	orl	%edx,%eax
	movl	%eax,16(%rsp)
	fldt	8(%rsp)
	ret
END (__copysignl)
libm_alias_ldouble (__copysign, copysign)