1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #include <amd64/bsd_asm.h>
- ENTRY(lrint)
- #ifndef _WIN64
- cvtsd2si %xmm0, %rax
- #else
- cvtsd2si %xmm0, %eax
- #endif
- ret
- END(lrint)
-
- #if defined(__linux__) && defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
|