History log of /freebsd-current/lib/msun/i387/e_fmodf.S
Revision Date Author Comments
# 1d386b48 16-Aug-2023 Warner Losh <imp@FreeBSD.org>

Remove $FreeBSD$: one-line .c pattern

Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/


# f776d19f 04-Sep-2016 Bruce Evans <bde@FreeBSD.org>

Oops, the previous i386 version of e_fmodf.S and e_fmodl.S was
actually the amd64 version.


# 83e449a4 03-Sep-2016 Bruce Evans <bde@FreeBSD.org>

Add asm versions of fmod(), fmodf() and fmodl() on amd64. Add asm
versions of fmodf() amd fmodl() on i387.

fmod is similar to remainder, and the C versions are 3 to 9 times
slower than the asm versions on x86 for both, but we had the strange
mixture of all 6 variants of remainder in asm and only 1 of 6
variants of fmod in asm.