diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2010-04-30 14:37:47 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2010-04-30 14:37:47 +0000 |
commit | acfc55ee40c11735c67f86554adae6f06fb27bf6 (patch) | |
tree | b3825ef6d5f8bb416694facf37f449375aacb391 /tests/texp.c | |
parent | 36b2d705037cc99806b571fc7222f445e7d10f81 (diff) | |
download | mpfr-acfc55ee40c11735c67f86554adae6f06fb27bf6.tar.gz |
Changed mp_prec_t into mpfr_prec_t.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6767 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/texp.c')
-rw-r--r-- | tests/texp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/texp.c b/tests/texp.c index f3187b04e..dc75cad65 100644 --- a/tests/texp.c +++ b/tests/texp.c @@ -156,10 +156,10 @@ check_worst_cases (void) } static void -compare_exp2_exp3 (mp_prec_t p0, mp_prec_t p1) +compare_exp2_exp3 (mpfr_prec_t p0, mpfr_prec_t p1) { mpfr_t x, y, z; - mp_prec_t prec; + mpfr_prec_t prec; mpfr_rnd_t rnd; mpfr_init (x); @@ -199,7 +199,7 @@ static void check_large (void) { mpfr_t x, z; - mp_prec_t prec; + mpfr_prec_t prec; /* bug found by Patrick Pe'lissier on 7 Jun 2004 */ prec = 203780; @@ -596,7 +596,7 @@ bug20080731 (void) { mp_exp_t emin; mpfr_t x, y1, y2; - mp_prec_t prec = 64; + mpfr_prec_t prec = 64; emin = mpfr_get_emin (); set_emin (MPFR_EMIN_MIN); |