about summary refs log tree commit diff
path: root/sysdeps/ieee754/soft-fp/s_faddl.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/soft-fp/s_faddl.c')
-rw-r--r--sysdeps/ieee754/soft-fp/s_faddl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/soft-fp/s_faddl.c b/sysdeps/ieee754/soft-fp/s_faddl.c
index 4b16984c76..23dfcc046a 100644
--- a/sysdeps/ieee754/soft-fp/s_faddl.c
+++ b/sysdeps/ieee754/soft-fp/s_faddl.c
@@ -42,7 +42,7 @@ __faddl (_Float128 x, _Float128 y)
   FP_UNPACK_SEMIRAW_Q (X, x);
   FP_UNPACK_SEMIRAW_Q (Y, y);
   FP_ADD_Q (R, X, Y);
-#if (2 * _FP_W_TYPE_SIZE) < _FP_FRACBITS_Q
+#if _FP_W_TYPE_SIZE < 64
   FP_TRUNC (S, Q, 1, 4, RN, R);
 #else
   FP_TRUNC (S, Q, 1, 2, RN, R);