x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r228108 = x;
double r228109 = y;
double r228110 = r228108 * r228109;
double r228111 = r228110 - r228108;
return r228111;
}
double f(double x, double y) {
double r228112 = x;
double r228113 = y;
double r228114 = -r228112;
double r228115 = fma(r228112, r228113, r228114);
return r228115;
}



Bits error versus x



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