x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r191603 = x;
double r191604 = y;
double r191605 = r191603 * r191604;
double r191606 = r191605 - r191603;
return r191606;
}
double f(double x, double y) {
double r191607 = x;
double r191608 = y;
double r191609 = -r191607;
double r191610 = fma(r191607, r191608, r191609);
return r191610;
}



Bits error versus x



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