mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 20:43:41 +01:00
26 lines
369 B
ArmAsm
26 lines
369 B
ArmAsm
/*
|
|
* Written by:
|
|
* J.T. Conklin (jtc@netbsd.org)
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <amd64/bsd_asm.h>
|
|
|
|
ENTRY(rintl)
|
|
#ifndef _WIN64
|
|
fldt 8(%rsp)
|
|
frndint
|
|
#else
|
|
fldt (%rdx)
|
|
frndint
|
|
mov %rcx,%rax
|
|
movq $0x0,0x8(%rcx)
|
|
fstpt (%rcx)
|
|
#endif
|
|
ret
|
|
|
|
|
|
/* Enable stack protection */
|
|
#if defined(__ELF__)
|
|
.section .note.GNU-stack,"",%progbits
|
|
#endif
|