summaryrefslogtreecommitdiff
path: root/mul_2si.c
diff options
context:
space:
mode:
Diffstat (limited to 'mul_2si.c')
-rw-r--r--mul_2si.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mul_2si.c b/mul_2si.c
index 15c9f6d16..66b6add3a 100644
--- a/mul_2si.c
+++ b/mul_2si.c
@@ -32,11 +32,11 @@ mpfr_mul_2si (mpfr_ptr y, mpfr_srcptr x, long int n, mp_rnd_t rnd_mode)
{
mp_exp_t exp = MPFR_GET_EXP (y);
if (MPFR_UNLIKELY( n > 0 && (__gmpfr_emax < MPFR_EMIN_MIN + n ||
- exp > __gmpfr_emax - n)))
+ exp > __gmpfr_emax - n)))
return mpfr_overflow (y, rnd_mode, MPFR_SIGN(y));
else if (MPFR_UNLIKELY(n < 0 && (__gmpfr_emin > MPFR_EMAX_MAX + n ||
- exp < __gmpfr_emin - n)))
+ exp < __gmpfr_emin - n)))
{
if (rnd_mode == GMP_RNDN &&
(__gmpfr_emin > MPFR_EMAX_MAX + (n + 1) ||