x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r185151 = x;
double r185152 = y;
double r185153 = r185151 * r185152;
double r185154 = r185153 - r185151;
return r185154;
}
double f(double x, double y) {
double r185155 = x;
double r185156 = y;
double r185157 = -r185155;
double r185158 = fma(r185155, r185156, r185157);
return r185158;
}



Bits error versus x



Bits error versus y
Initial program 0.0
rmApplied add-cube-cbrt0.8
Applied prod-diff0.8
Simplified0.0
Simplified0
Final simplification0
herbie shell --seed 2020046 +o rules:numerics
(FPCore (x y)
:name "Data.Histogram.Bin.LogBinD:$cbinSizeN from histogram-fill-0.8.4.1"
:precision binary64
(- (* x y) x))