diff options
Diffstat (limited to 'src/math/i386/fmodf.s')
-rw-r--r-- | src/math/i386/fmodf.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/math/i386/fmodf.s b/src/math/i386/fmodf.s new file mode 100644 index 00000000..d99c80f2 --- /dev/null +++ b/src/math/i386/fmodf.s @@ -0,0 +1,11 @@ +.global fmodf +.type fmodf,@function +fmodf: + flds 8(%esp) + flds 4(%esp) +1: fprem + fstsw %ax + sahf + jp 1b + fstp %st(1) + ret |