123456789101112131415161718192021222324252627282930313233343536 |
- #include <i387/bsd_asm.h>
- ENTRY(floorf)
- pushl %ebp
- movl %esp,%ebp
- subl $8,%esp
- fstcw -4(%ebp)
- movw -4(%ebp),%dx
- orw $0x0400,%dx
- andw $0xf7ff,%dx
- movw %dx,-8(%ebp)
- fldcw -8(%ebp)
- flds 8(%ebp);
- frndint
- fldcw -4(%ebp)
- leave
- ret
- END(floorf)
-
- #if defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
|