x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r215056 = x;
double r215057 = y;
double r215058 = r215056 * r215057;
double r215059 = r215058 - r215056;
return r215059;
}
double f(double x, double y) {
double r215060 = x;
double r215061 = y;
double r215062 = -r215060;
double r215063 = fma(r215060, r215061, r215062);
return r215063;
}



Bits error versus x



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