x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r176085 = x;
double r176086 = y;
double r176087 = r176085 * r176086;
double r176088 = r176087 - r176085;
return r176088;
}
double f(double x, double y) {
double r176089 = x;
double r176090 = y;
double r176091 = -r176089;
double r176092 = fma(r176089, r176090, r176091);
return r176092;
}



Bits error versus x



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