x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r193508 = x;
double r193509 = y;
double r193510 = r193508 * r193509;
double r193511 = r193510 - r193508;
return r193511;
}
double f(double x, double y) {
double r193512 = x;
double r193513 = y;
double r193514 = -r193512;
double r193515 = fma(r193512, r193513, r193514);
return r193515;
}



Bits error versus x



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