Definition at line 26 of file fmod.c.
Referenced by _CIfmod(), fmodf(), fmodl(), hour_from_time(), CMathTest::import_checks(), make_day(), min_from_time(), mod_eval(), ms_from_time(), Number_toString(), rpn_exp10(), sec_from_time(), time_within_day(), VarR8Round(), week_day(), xsltFormatNumberConversion(), xsltNumberFormatAlpha(), and xsltNumberFormatDecimal().
{
register double __val;
#ifdef __GNUC__
__asm __volatile__
("1: fprem\n\t"
"fstsw %%ax\n\t"
"sahf\n\t"
"jp 1b"
: "=t" (__val) : "0" (__x), "u" (__y) : "ax", "cc");
#else
__asm
{
fld __y
fld __x
L1: fprem1
fstsw ax
sahf
jp L1
fstp __val
}
#endif
return __val;
}