mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 04:23:41 +01:00
24 lines
467 B
ArmAsm
24 lines
467 B
ArmAsm
/*
|
|
* Based on code written by J.T. Conklin <jtc@NetBSD.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <i387/bsd_asm.h>
|
|
//__FBSDID("$FreeBSD: src/lib/msun/i387/s_copysignl.S,v 1.3 2011/01/07 16:13:12 kib Exp $")
|
|
|
|
ENTRY(copysignl)
|
|
movl 24(%esp),%edx
|
|
andl $0x8000,%edx
|
|
movl 12(%esp),%eax
|
|
andl $0x7fff,%eax
|
|
orl %edx,%eax
|
|
movl %eax,12(%esp)
|
|
fldt 4(%esp)
|
|
ret
|
|
END(copysignl)
|
|
|
|
|
|
/* Enable stack protection */
|
|
#if defined(__ELF__)
|
|
.section .note.GNU-stack,"",%progbits
|
|
#endif
|