x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r143457 = x;
double r143458 = y;
double r143459 = r143457 * r143458;
double r143460 = r143459 - r143457;
return r143460;
}
double f(double x, double y) {
double r143461 = x;
double r143462 = y;
double r143463 = -r143461;
double r143464 = fma(r143461, r143462, r143463);
return r143464;
}



Bits error versus x



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