x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r146943 = x;
double r146944 = y;
double r146945 = r146943 * r146944;
double r146946 = r146945 - r146943;
return r146946;
}
double f(double x, double y) {
double r146947 = x;
double r146948 = y;
double r146949 = -r146947;
double r146950 = fma(r146947, r146948, r146949);
return r146950;
}



Bits error versus x



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