9235ed7199
In this specific case, Valgrind won't get confused when analyzing such functions. Sponsored by: Sandvine Incorporated Tested by: emaste MFC: 3 days
19 lines
297 B
ArmAsm
19 lines
297 B
ArmAsm
/*
|
|
* Based on code written by J.T. Conklin <jtc@NetBSD.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
__FBSDID("$FreeBSD$")
|
|
|
|
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)
|