1234567891011121314151617181920212223242526 |
- /*
- * Written by:
- * J.T. Conklin ([email protected])
- * 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
|