x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r165048 = x;
double r165049 = y;
double r165050 = r165048 * r165049;
double r165051 = r165050 - r165048;
return r165051;
}
double f(double x, double y) {
double r165052 = x;
double r165053 = y;
double r165054 = -r165052;
double r165055 = fma(r165052, r165053, r165054);
return r165055;
}



Bits error versus x



Bits error versus y
Initial program 0.0
rmApplied fma-neg0
Final simplification0
herbie shell --seed 2020001 +o rules:numerics
(FPCore (x y)
:name "Data.Histogram.Bin.LogBinD:$cbinSizeN from histogram-fill-0.8.4.1"
:precision binary64
(- (* x y) x))