Re: [PATCH v2 03/10] softfloat: Tidy a * b + inf return

2020-10-16 Thread Philippe Mathieu-Daudé
On 9/25/20 5:20 PM, Richard Henderson wrote: No reason to set values in 'a', when we already have float_class_inf in 'c', and can flip that sign. Reviewed-by: David Hildenbrand Signed-off-by: Richard Henderson --- fpu/softfloat.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)

Re: [PATCH v2 03/10] softfloat: Tidy a * b + inf return

2020-10-16 Thread Alex Bennée
Richard Henderson writes: > No reason to set values in 'a', when we already > have float_class_inf in 'c', and can flip that sign. > > Reviewed-by: David Hildenbrand > Signed-off-by: Richard Henderson Reviewed-by: Alex Bennée -- Alex Bennée

[PATCH v2 03/10] softfloat: Tidy a * b + inf return

2020-09-25 Thread Richard Henderson
No reason to set values in 'a', when we already have float_class_inf in 'c', and can flip that sign. Reviewed-by: David Hildenbrand Signed-off-by: Richard Henderson --- fpu/softfloat.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fpu/softfloat.c b/fpu/softfloat.c ind