12345678910111213141516171819202122232425 |
- #include <i387/bsd_asm.h>
- ENTRY(fmod)
- fldl 12(%esp)
- fldl 4(%esp)
- 1: fprem
- fstsw %ax
- sahf
- jp 1b
- fstp %st(1)
- ret
- END(fmod)
-
- #if defined(__linux__) && defined(__ELF__)
- .section .note.GNU-stack,"",%progbits
- #endif
|