Re: [PATCH 10/10] softfloat: Return bool from all classification predicates

2020-05-19 Thread Richard Henderson
On 5/19/20 3:10 AM, Alex Bennée wrote: > > Richard Henderson writes: > >> This includes *_is_any_nan, *_is_neg, *_is_inf, etc. >> >> Signed-off-by: Richard Henderson > > Reviewed-by: Alex Bennée > > As an aside do you think we'll see any benefit from rolling up the > classifications with the

Re: [PATCH 10/10] softfloat: Return bool from all classification predicates

2020-05-19 Thread Alex Bennée
Richard Henderson writes: > This includes *_is_any_nan, *_is_neg, *_is_inf, etc. > > Signed-off-by: Richard Henderson Reviewed-by: Alex Bennée As an aside do you think we'll see any benefit from rolling up the classifications with the decomposed versions? I would hope the compiler could dro

Re: [PATCH 10/10] softfloat: Return bool from all classification predicates

2020-05-15 Thread Philippe Mathieu-Daudé
On 5/15/20 9:01 PM, Richard Henderson wrote: This includes *_is_any_nan, *_is_neg, *_is_inf, etc. Signed-off-by: Richard Henderson --- include/fpu/softfloat.h| 66 +- fpu/softfloat-specialize.inc.c | 16 - 2 files changed, 41 insertions(+), 41

[PATCH 10/10] softfloat: Return bool from all classification predicates

2020-05-15 Thread Richard Henderson
This includes *_is_any_nan, *_is_neg, *_is_inf, etc. Signed-off-by: Richard Henderson --- include/fpu/softfloat.h| 66 +- fpu/softfloat-specialize.inc.c | 16 - 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/include/fpu/softfloat.