summary refs log tree commit diff stats
path: root/target-ppc/op_helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'target-ppc/op_helper.c')
-rw-r--r--target-ppc/op_helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target-ppc/op_helper.c b/target-ppc/op_helper.c
index 8182773564..363d84cdbc 100644
--- a/target-ppc/op_helper.c
+++ b/target-ppc/op_helper.c
@@ -519,7 +519,7 @@ static inline int isinfinity (float64 f)
 
     u.f = f;
 
-    return ((u.u >> 51) & 0x3FF) == 0x3FF &&
+    return ((u.u >> 52) & 0x3FF) == 0x3FF &&
         (u.u & 0x000FFFFFFFFFFFFFULL) == 0;
 }
 
@@ -679,7 +679,7 @@ static always_inline void float_zero_divide_excp (void)
         u0.f = FT0;
         u1.f = FT1;
         u0.u = ((u0.u ^ u1.u) & 0x8000000000000000ULL);
-        u0.u |= 0x3FFULL << 51;
+        u0.u |= 0x3FFULL << 52;
         FT0 = u0.f;
     }
 }