x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r198429 = x;
double r198430 = y;
double r198431 = r198429 * r198430;
double r198432 = r198431 - r198429;
return r198432;
}
double f(double x, double y) {
double r198433 = x;
double r198434 = y;
double r198435 = -r198433;
double r198436 = fma(r198433, r198434, r198435);
return r198436;
}



Bits error versus x



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