; Alex Bennée
; Aurelien Jarno
Subject: Re: [PATCH] Added hardfloat conversion from float32 to float64
On 10/16/19 12:32 AM, Matus Kysel wrote:
> +float64 float32_to_float64(float32 a, float_status *status) {
> +if (unlikely(!float32_is_normal(a))) {
> +return soft_float32_to_
Patchew URL: https://patchew.org/QEMU/20191016073240.12473-1-mky...@tachyum.com/
Hi,
This series seems to have some coding style problems. See output below for
more information:
Subject: [PATCH] Added hardfloat conversion from float32 to float64
Type: series
Message-id: 20191016073240.12473-1
On 10/16/19 12:32 AM, Matus Kysel wrote:
> +float64 float32_to_float64(float32 a, float_status *status)
> +{
> +if (unlikely(!float32_is_normal(a))) {
> +return soft_float32_to_float64(a, status);
> +} else if (float32_is_zero(a)) {
> +return float64_set_sign(float64_zero, f
Reintroduce float32_to_float64 that was removed here:
https://lists.gnu.org/archive/html/qemu-devel/2018-04/msg00455.html
- nbench test it not actually calling this function at all
- SPECS 2006 significat number of tests impoved their runtime, just
few of them showed small slowdown
Signed-of