Re: [RFC PATCH 3/6] softfloat: add float*_to_uint128 conversion methods
On 3/28/22 14:14, matheus.fe...@eldorado.org.br wrote: +static uint64_t partsN(float_to_uint2)(FloatPartsN *p, FloatRoundMode rmode, + int scale, float_status *s, uint64_t *lo) +{ +int flags = 0; +uint64_t hi; I think most of this would read cleane
[RFC PATCH 3/6] softfloat: add float*_to_uint128 conversion methods
From: Matheus Ferst Implements parts_float_to_uint2 based on parts_float_to_uint logic. The new methods return the lower part of the result through the "lo" pointer. Signed-off-by: Matheus Ferst --- fpu/softfloat-parts.c.inc | 71 +++ fpu/softfloat.c