123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #include <amd64/bsd_asm.h>
-
- ENTRY(lrintl)
- #ifndef _WIN64
- fldt 8(%rsp)
- #else
- fldt (%rcx)
- #endif
- subq $8,%rsp
- fistpll (%rsp)
- popq %rax
- ret
-
- #if defined(__linux__) && defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
|