diff options
Diffstat (limited to 'sysdeps/ieee754/soft-fp')
-rw-r--r-- | sysdeps/ieee754/soft-fp/s_daddl.c | 2 | ||||
-rw-r--r-- | sysdeps/ieee754/soft-fp/s_ddivl.c | 2 | ||||
-rw-r--r-- | sysdeps/ieee754/soft-fp/s_dmull.c | 2 | ||||
-rw-r--r-- | sysdeps/ieee754/soft-fp/s_dsubl.c | 2 | ||||
-rw-r--r-- | sysdeps/ieee754/soft-fp/s_faddl.c | 2 | ||||
-rw-r--r-- | sysdeps/ieee754/soft-fp/s_fdivl.c | 2 | ||||
-rw-r--r-- | sysdeps/ieee754/soft-fp/s_fmull.c | 2 | ||||
-rw-r--r-- | sysdeps/ieee754/soft-fp/s_fsubl.c | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/sysdeps/ieee754/soft-fp/s_daddl.c b/sysdeps/ieee754/soft-fp/s_daddl.c index 7f217a88c5..dc909a1c8b 100644 --- a/sysdeps/ieee754/soft-fp/s_daddl.c +++ b/sysdeps/ieee754/soft-fp/s_daddl.c @@ -46,7 +46,7 @@ __daddl (_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 (D, Q, 2, 4, RN, R); #else FP_TRUNC (D, Q, 1, 2, RN, R); diff --git a/sysdeps/ieee754/soft-fp/s_ddivl.c b/sysdeps/ieee754/soft-fp/s_ddivl.c index d792b70de8..8e469c5780 100644 --- a/sysdeps/ieee754/soft-fp/s_ddivl.c +++ b/sysdeps/ieee754/soft-fp/s_ddivl.c @@ -46,7 +46,7 @@ __ddivl (_Float128 x, _Float128 y) FP_UNPACK_Q (X, x); FP_UNPACK_Q (Y, y); FP_DIV_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); 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); diff --git a/sysdeps/ieee754/soft-fp/s_dsubl.c b/sysdeps/ieee754/soft-fp/s_dsubl.c index 14cc769481..699ff44056 100644 --- a/sysdeps/ieee754/soft-fp/s_dsubl.c +++ b/sysdeps/ieee754/soft-fp/s_dsubl.c @@ -46,7 +46,7 @@ __dsubl (_Float128 x, _Float128 y) FP_UNPACK_SEMIRAW_Q (X, x); FP_UNPACK_SEMIRAW_Q (Y, y); FP_SUB_Q (R, X, Y); -#if (2 * _FP_W_TYPE_SIZE) < _FP_FRACBITS_Q +#if _FP_W_TYPE_SIZE < 64 FP_TRUNC (D, Q, 2, 4, RN, R); #else FP_TRUNC (D, Q, 1, 2, RN, R); 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); diff --git a/sysdeps/ieee754/soft-fp/s_fdivl.c b/sysdeps/ieee754/soft-fp/s_fdivl.c index df7a01767c..4792b231b1 100644 --- a/sysdeps/ieee754/soft-fp/s_fdivl.c +++ b/sysdeps/ieee754/soft-fp/s_fdivl.c @@ -42,7 +42,7 @@ __fdivl (_Float128 x, _Float128 y) FP_UNPACK_Q (X, x); FP_UNPACK_Q (Y, y); FP_DIV_Q (R, X, Y); -#if (2 * _FP_W_TYPE_SIZE) < _FP_FRACBITS_Q +#if _FP_W_TYPE_SIZE < 64 FP_TRUNC_COOKED (S, Q, 1, 4, RN, R); #else FP_TRUNC_COOKED (S, Q, 1, 2, RN, R); diff --git a/sysdeps/ieee754/soft-fp/s_fmull.c b/sysdeps/ieee754/soft-fp/s_fmull.c index 1ae0e1a187..8d98bf9309 100644 --- a/sysdeps/ieee754/soft-fp/s_fmull.c +++ b/sysdeps/ieee754/soft-fp/s_fmull.c @@ -42,7 +42,7 @@ __fmull (_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 (S, Q, 1, 4, RN, R); #else FP_TRUNC_COOKED (S, Q, 1, 2, RN, R); diff --git a/sysdeps/ieee754/soft-fp/s_fsubl.c b/sysdeps/ieee754/soft-fp/s_fsubl.c index bafc820a00..bca0060443 100644 --- a/sysdeps/ieee754/soft-fp/s_fsubl.c +++ b/sysdeps/ieee754/soft-fp/s_fsubl.c @@ -42,7 +42,7 @@ __fsubl (_Float128 x, _Float128 y) FP_UNPACK_SEMIRAW_Q (X, x); FP_UNPACK_SEMIRAW_Q (Y, y); FP_SUB_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); |