summaryrefslogtreecommitdiff
path: root/tests/tacosh.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tacosh.c')
-rw-r--r--tests/tacosh.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/tacosh.c b/tests/tacosh.c
index d10dbe4f2..fbabc3098 100644
--- a/tests/tacosh.c
+++ b/tests/tacosh.c
@@ -176,17 +176,7 @@ huge (void)
{
mpfr_t x, y, z;
int inex;
- mpfr_exp_t emax;
- if (mpfr_get_emax_max () < 1073741823)
- return;
-
- emax = mpfr_get_emax ();
- mpfr_set_emax (1073741823);
-
- /* FIXME: The main purpose of this test was on 32-bit ABI,
- but it is no longer run there. Solution: implement the
- TODO below. */
/* TODO: extend the exponent range and use mpfr_get_emax (). */
mpfr_inits2 (32, x, y, z, (mpfr_ptr) 0);
mpfr_set_ui_2exp (x, 1, 1073741822, MPFR_RNDN);
@@ -203,7 +193,6 @@ huge (void)
MPFR_ASSERTN (inex < 0);
mpfr_clears (x, y, z, (mpfr_ptr) 0);
- mpfr_set_emax (emax);
}
int