[RFC PATCH 5/8] softfloat: Inline pick_nan_muladd into its caller

2020-10-20 Thread Alex Bennée
From: Richard Henderson Because of FloatParts, there will only ever be one caller. Inlining allows us to re-use abc_mask for the snan test. Reviewed-by: David Hildenbrand Signed-off-by: Richard Henderson Signed-off-by: Alex Bennée Message-Id: <20200925152047.709901-6-richard.hender...@linaro.

Re: [PATCH 5/8] softfloat: Inline pick_nan_muladd into its caller

2020-09-24 Thread David Hildenbrand
On 24.09.20 03:24, Richard Henderson wrote: > Because of FloatParts, there will only ever be one caller. > Inlining allows us to re-use abc_mask for the snan test. > > Signed-off-by: Richard Henderson > --- > fpu/softfloat.c | 75 +++-- > 1 file change

[PATCH 5/8] softfloat: Inline pick_nan_muladd into its caller

2020-09-23 Thread Richard Henderson
Because of FloatParts, there will only ever be one caller. Inlining allows us to re-use abc_mask for the snan test. Signed-off-by: Richard Henderson --- fpu/softfloat.c | 75 +++-- 1 file changed, 35 insertions(+), 40 deletions(-) diff --git a/fpu/sof