summaryrefslogtreecommitdiff
path: root/tests/tcoth.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcoth.c')
-rw-r--r--tests/tcoth.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/tcoth.c b/tests/tcoth.c
index 22f517637..999eb41ff 100644
--- a/tests/tcoth.c
+++ b/tests/tcoth.c
@@ -149,13 +149,13 @@ underflowed_cothinf (void)
mpfr_set_inf (x, i);
mpfr_clear_flags ();
set_emin (2); /* 1 is not representable. */
- inex = mpfr_coth (x, x, rnd);
+ inex = mpfr_coth (x, x, (mp_rnd_t) rnd);
set_emin (old_emin);
if (! mpfr_underflow_p ())
{
printf ("Error in underflowed_cothinf (i = %d, rnd = %s):\n"
" The underflow flag is not set.\n",
- i, mpfr_print_rnd_mode (rnd));
+ i, mpfr_print_rnd_mode ((mp_rnd_t) rnd));
err = 1;
}
mpfr_set_si (y, (i < 0 && rnd == GMP_RNDD) ||
@@ -166,7 +166,7 @@ underflowed_cothinf (void)
MPFR_MULT_SIGN (MPFR_SIGN (x), MPFR_SIGN (y)) > 0))
{
printf ("Error in underflowed_cothinf (i = %d, rnd = %s):\n"
- " Got ", i, mpfr_print_rnd_mode (rnd));
+ " Got ", i, mpfr_print_rnd_mode ((mp_rnd_t) rnd));
mpfr_print_binary (x);
printf (" instead of ");
mpfr_print_binary (y);
@@ -178,7 +178,7 @@ underflowed_cothinf (void)
{
printf ("Error in underflowed_cothinf (i = %d, rnd = %s):\n"
" The inexact value must be negative.\n",
- i, mpfr_print_rnd_mode (rnd));
+ i, mpfr_print_rnd_mode ((mp_rnd_t) rnd));
err = 1;
}
if ((rnd == GMP_RNDU ||
@@ -186,7 +186,7 @@ underflowed_cothinf (void)
{
printf ("Error in underflowed_cothinf (i = %d, rnd = %s):\n"
" The inexact value must be positive.\n",
- i, mpfr_print_rnd_mode (rnd));
+ i, mpfr_print_rnd_mode ((mp_rnd_t) rnd));
err = 1;
}
}