On 5/31/19 5:44 AM, David Hildenbrand wrote:
> +static uint64_t vfa64(uint64_t a, uint64_t b, float_status *s)
> +{
> + return float64_val(float64_add(make_float64(a), make_float64(b), s));
> +}You don't need either make_float64 or float64_val. I've been intending to strip them out entirely; we don't need to add new uses. r~
