diff options
-rw-r--r-- | mul_ui.c | 2 | ||||
-rw-r--r-- | sub1.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -86,7 +86,7 @@ mpfr_mul_ui (mpfr_ptr y, mpfr_srcptr x, unsigned long int u, mp_rnd_t rnd_mode) /* since the case u=1 was treated above, we have u >= 2, thus my[xn] >= 1 since x was msb-normalized */ - ASSERT_ALWAYS(my[xn] != 0); + MPFR_ASSERTN(my[xn] != 0); count_leading_zeros(cnt, my[xn]); mpn_lshift (my, my, xn + 1, cnt); @@ -401,6 +401,6 @@ mpfr_sub1 (mpfr_ptr a, mpfr_srcptr b, mpfr_srcptr c, printf ("result is a="); mpfr_print_raw(a); putchar('\n'); #endif /* check that result is msb-normalized */ - ASSERT_ALWAYS(ap[an-1] > ~ap[an-1]); + MPFR_ASSERTN(ap[an-1] > ~ap[an-1]); return inexact * MPFR_SIGN(b); } |