x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r7841837 = x;
double r7841838 = y;
double r7841839 = r7841837 * r7841838;
double r7841840 = r7841839 - r7841837;
return r7841840;
}
double f(double x, double y) {
double r7841841 = x;
double r7841842 = y;
double r7841843 = -r7841841;
double r7841844 = fma(r7841841, r7841842, r7841843);
return r7841844;
}



Bits error versus x



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