summaryrefslogtreecommitdiff
path: root/mpn_exp.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpn_exp.c')
-rw-r--r--mpn_exp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mpn_exp.c b/mpn_exp.c
index 2a9bb197c..f531878d2 100644
--- a/mpn_exp.c
+++ b/mpn_exp.c
@@ -96,11 +96,11 @@ mpfr_mpn_exp (mp_limb_t *a, mp_exp_t *exp_r, int b, mp_exp_t e, size_t n)
/* check overflow on f */
if (MPFR_UNLIKELY(f < MPFR_EXP_MIN/2 || f > MPFR_EXP_MAX/2))
- {
- overflow:
- MPFR_TMP_FREE(marker);
- return -2;
- }
+ {
+ overflow:
+ MPFR_TMP_FREE(marker);
+ return -2;
+ }
/* FIXME: Could f = 2*f + n * BITS_PER_MP_LIMB be used? */
f = 2*f;
MPFR_SADD_OVERFLOW (f, f, n * BITS_PER_MP_LIMB,