[Qemu-devel] [PATCH] target-arm: fix for exponent comparison in recpe_f64

2015-02-05 Thread ild
From: Ildar Isaev f64 exponent in HELPER(recpe_f64) should be compared to 2045 rather than 1023 (FPRecipEstimate in ARMV8 spec) Signed-off-by: Ildar Isaev --- target-arm/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-arm/helper.c b/target-arm/helper.c index

Re: [Qemu-devel] [PATCH] target-arm: fix for exponent comparison in recpe_f64

2015-02-05 Thread Peter Maydell
On 5 February 2015 at 11:27, wrote: > From: Ildar Isaev > > f64 exponent in HELPER(recpe_f64) should be compared to 2045 rather than 1023 > (FPRecipEstimate in ARMV8 spec) > > Signed-off-by: Ildar Isaev > --- > target-arm/helper.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Thanks