x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r292942 = x;
double r292943 = y;
double r292944 = r292942 * r292943;
double r292945 = r292944 - r292942;
return r292945;
}
double f(double x, double y) {
double r292946 = x;
double r292947 = y;
double r292948 = -r292946;
double r292949 = fma(r292946, r292947, r292948);
return r292949;
}



Bits error versus x



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