mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
18 lines
239 B
ArmAsm
18 lines
239 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
ENTRY(fmodf)
|
|
flds 8(%esp)
|
|
flds 4(%esp)
|
|
1: fprem
|
|
fstsw %ax
|
|
sahf
|
|
jp 1b
|
|
fstp %st(1)
|
|
ret
|
|
END(fmodf)
|
|
|
|
.section .note.GNU-stack,"",%progbits
|