On 02/15/2017 05:37 PM, Bharata B Rao wrote:
+ * + * TODO: When float128_muladd() becomes available, switch this + * implementation to use that instead of separate float128_mul() + * followed by float128_add().
Let's just do that, rather than add something that can't pass tests.You should be able to copy float64_muladd and, for the most part, s/128/256/ and s/64/128/. Other of the magic numbers, like the implicit bit and the exponent bias, you get from float128_mul.
r~