]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/math/i386/fmodf.s
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / math / i386 / fmodf.s
1 .global fmodf
2 .type fmodf,@function
3 fmodf:
4 flds 8(%esp)
5 flds 4(%esp)
6 1: fprem
7 fnstsw %ax
8 sahf
9 jp 1b
10 fstp %st(1)
11 ret