x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r253627 = x;
double r253628 = y;
double r253629 = r253627 * r253628;
double r253630 = r253629 - r253627;
return r253630;
}
double f(double x, double y) {
double r253631 = x;
double r253632 = y;
double r253633 = -r253631;
double r253634 = fma(r253631, r253632, r253633);
return r253634;
}



Bits error versus x



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