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