x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r142252 = x;
double r142253 = y;
double r142254 = r142252 * r142253;
double r142255 = r142254 - r142252;
return r142255;
}
double f(double x, double y) {
double r142256 = x;
double r142257 = y;
double r142258 = -r142256;
double r142259 = fma(r142256, r142257, r142258);
return r142259;
}



Bits error versus x



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