x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r147968 = x;
double r147969 = y;
double r147970 = r147968 * r147969;
double r147971 = r147970 - r147968;
return r147971;
}
double f(double x, double y) {
double r147972 = x;
double r147973 = y;
double r147974 = -r147972;
double r147975 = fma(r147972, r147973, r147974);
return r147975;
}



Bits error versus x



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