qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v3 13/15] hardfloat: support float32/64 fused mu


From: Emilio G. Cota
Subject: Re: [Qemu-devel] [PATCH v3 13/15] hardfloat: support float32/64 fused multiply-add
Date: Wed, 4 Apr 2018 19:16:26 -0400
User-agent: Mutt/1.5.24 (2015-08-30)

On Wed, Apr 04, 2018 at 19:11:13 -0400, Emilio G. Cota wrote:
(snip)
> +        if (likely((soft_t ## _is_normal(a) || soft_t ## _is_zero(a)) && \
> +                   (soft_t ## _is_normal(b) || soft_t ## _is_zero(b)) && \
> +                   (soft_t ## _is_normal(c) || soft_t ## _is_zero(c)) && \

This is outdated wrt to the v3 tree on github. Changed there to:


-        if (likely((soft_t ## _is_normal(a) || soft_t ## _is_zero(a)) && \
-                   (soft_t ## _is_normal(b) || soft_t ## _is_zero(b)) && \
-                   (soft_t ## _is_normal(c) || soft_t ## _is_zero(c)) && \
+        if (likely(soft_t ## _is_zero_or_normal(a) &&                   \
+                   soft_t ## _is_zero_or_normal(b) &&                   \
+                   soft_t ## _is_zero_or_normal(c) &&                   \

                E.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]