1234567891011121314151617181920212223242526272829303132 |
- #include <i387/bsd_asm.h>
- ENTRY(ceilf)
- pushl %ebp
- movl %esp,%ebp
- subl $8,%esp
- fstcw -4(%ebp)
- movw -4(%ebp),%dx
- orw $0x0800,%dx
- andw $0xfbff,%dx
- movw %dx,-8(%ebp)
- fldcw -8(%ebp)
- flds 8(%ebp);
- frndint
- fldcw -4(%ebp)
- leave
- ret
- END(ceilf)
-
|