1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #include <i387/bsd_asm.h>
- //__FBSDID("$FreeBSD: src/lib/msun/i387/s_lrintl.S,v 1.2 2011/01/07 16:13:12 kib Exp $");
-
- ENTRY(lrintl)
- fldt 4(%esp)
- subl $4,%esp
- fistpl (%esp)
- popl %eax
- ret
-
- #if defined(__linux__) && defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
|