6.25 __fma, __fmaf Intrinsic Function
Fused floating-point multiply-accumulate computes x*y+z without intermediate rounding,
Suggested Replacement
__builtin_fma
Caveats
None.
Examples
Consider migrating IAR code such
as:
double __fma(double x, double y, double z);
float __fmaf(float x, float y, float z);
to
MPLAB XC codes similar
to:double __builtin_fma(double x, double y, double z);
float __builtin_fmaf(double x, double y, double z);
Further Information
None.