RE: [PATCH] Added hardfloat conversion from float32 to float64

2019-10-30 Thread Matus Kysel
; 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_t

Re: [PATCH] Added hardfloat conversion from float32 to float64

2019-10-16 Thread no-reply
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:

Re: [PATCH] Added hardfloat conversion from float32 to float64

2019-10-16 Thread Richard Henderson
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,