Re: [Qemu-devel] [PATCH 6/6] softfloat: Fix missing inexact for floating-point add

2018-08-11 Thread Laurent Desnogues
On Fri, Aug 10, 2018 at 9:31 PM, Richard Henderson wrote: > For 0x1.3p+0 + 0x1.ffep+14 = 0x1.0001fffp+15 > we dropped the sticky bit and so failed to raise inexact. > > Reported-by: Laurent Desnogues > Signed-off-by: Richard Henderson Tested-by: Laurent Desnogues Reviewed-by: L

[Qemu-devel] [PATCH 6/6] softfloat: Fix missing inexact for floating-point add

2018-08-10 Thread Richard Henderson
For 0x1.3p+0 + 0x1.ffep+14 = 0x1.0001fffp+15 we dropped the sticky bit and so failed to raise inexact. Reported-by: Laurent Desnogues Signed-off-by: Richard Henderson --- fpu/softfloat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpu/softfloat.c b/fpu/so