summaryrefslogtreecommitdiff
path: root/tests/tget_set_d64.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tget_set_d64.c')
-rw-r--r--tests/tget_set_d64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tget_set_d64.c b/tests/tget_set_d64.c
index a5f149b6b..05191b95a 100644
--- a/tests/tget_set_d64.c
+++ b/tests/tget_set_d64.c
@@ -298,7 +298,7 @@ check_random (void)
/* the normal decimal64 range contains [2^(-1272), 2^1278] */
mpfr_mul_2si (x, x, (i % 2550) - 1272, MPFR_RNDN);
if (mpfr_get_exp (x) <= -1272)
- mpfr_mul_2exp (x, x, -1271 - mpfr_get_exp (x), MPFR_RNDN);
+ mpfr_mul_2ui (x, x, -1271 - mpfr_get_exp (x), MPFR_RNDN);
d = mpfr_get_decimal64 (x, MPFR_RNDN);
mpfr_set_decimal64 (y, d, MPFR_RNDN);
if (mpfr_cmp (x, y) != 0)