123456789101112131415161718192021222324252627282930313233 |
- #include <i387/bsd_asm.h>
- ENTRY(trunc)
- pushl %ebp
- movl %esp,%ebp
- subl $8,%esp
- fstcw -4(%ebp)
- movw -4(%ebp),%dx
- orw $0x0c00,%dx
- movw %dx,-8(%ebp)
- fldcw -8(%ebp)
- fldl 8(%ebp)
- frndint
- fldcw -4(%ebp)
- leave
- ret
- END(trunc)
-
- #if defined(__linux__) && defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
|