12345678910111213141516171819202122 |
- /*
- * 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
-
|