about summary refs log tree commit diff
path: root/sysdeps/ieee754/soft-fp/s_dmull.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/soft-fp/s_dmull.c')
-rw-r--r--sysdeps/ieee754/soft-fp/s_dmull.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/soft-fp/s_dmull.c b/sysdeps/ieee754/soft-fp/s_dmull.c
index 9841f817e7..437c55bd80 100644
--- a/sysdeps/ieee754/soft-fp/s_dmull.c
+++ b/sysdeps/ieee754/soft-fp/s_dmull.c
@@ -46,7 +46,7 @@ __dmull (_Float128 x, _Float128 y)
   FP_UNPACK_Q (X, x);
   FP_UNPACK_Q (Y, y);
   FP_MUL_Q (R, X, Y);
-#if (2 * _FP_W_TYPE_SIZE) < _FP_FRACBITS_Q
+#if _FP_W_TYPE_SIZE < 64
   FP_TRUNC_COOKED (D, Q, 2, 4, RN, R);
 #else
   FP_TRUNC_COOKED (D, Q, 1, 2, RN, R);