x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r120218 = x;
double r120219 = y;
double r120220 = r120218 * r120219;
double r120221 = r120220 - r120218;
return r120221;
}
double f(double x, double y) {
double r120222 = x;
double r120223 = y;
double r120224 = -r120222;
double r120225 = fma(r120222, r120223, r120224);
return r120225;
}



Bits error versus x



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