qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PULL 14/18] target-alpha: Suppress underflow from CVTTQ if


From: Richard Henderson
Subject: [Qemu-devel] [PULL 14/18] target-alpha: Suppress underflow from CVTTQ if DNZ
Date: Wed, 9 Jul 2014 09:20:30 -0700

I.e. respect flush_inputs_to_zero.

Reported-by: Al Viro <address@hidden>
Signed-off-by: Richard Henderson <address@hidden>
---
 target-alpha/fpu_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target-alpha/fpu_helper.c b/target-alpha/fpu_helper.c
index cf6c44a..796d907 100644
--- a/target-alpha/fpu_helper.c
+++ b/target-alpha/fpu_helper.c
@@ -725,7 +725,7 @@ static inline uint64_t inline_cvttq(CPUAlphaState *env, 
uint64_t a,
     frac = a & 0xfffffffffffffull;
 
     if (exp == 0) {
-        if (unlikely(frac != 0)) {
+        if (unlikely(frac != 0) && !env->fp_status.flush_inputs_to_zero) {
             goto do_underflow;
         }
     } else if (exp == 0x7ff) {
-- 
1.9.3




reply via email to

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