x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r1231 = x;
double r1232 = y;
double r1233 = r1231 * r1232;
double r1234 = r1233 - r1231;
return r1234;
}
double f(double x, double y) {
double r1235 = x;
double r1236 = y;
double r1237 = -r1235;
double r1238 = fma(r1235, r1236, r1237);
return r1238;
}



Bits error versus x



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