diff options
author | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2010-05-07 15:13:02 +0000 |
---|---|---|
committer | vlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4> | 2010-05-07 15:13:02 +0000 |
commit | 3ffa08c3f9f5d2790dca53a5a39f95ab54390acd (patch) | |
tree | de0193ea3a91c163a9b23921b1517e85905403b0 /tests/tpow_all.c | |
parent | 5b51d2ffc3e7364b683023047aaffc78d1a894a6 (diff) | |
download | mpfr-3ffa08c3f9f5d2790dca53a5a39f95ab54390acd.tar.gz |
New exponent type mpfr_exp_t for MPFR (replacing GMP's mp_exp_t).
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@6789 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tpow_all.c')
-rw-r--r-- | tests/tpow_all.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/tpow_all.c b/tests/tpow_all.c index f12bc24f0..162f0d59a 100644 --- a/tests/tpow_all.c +++ b/tests/tpow_all.c @@ -466,7 +466,7 @@ static void underflow_up1 (void) { mpfr_t delta, x, y, z, z0; - mp_exp_t n; + mpfr_exp_t n; int inex; int rnd; int i; @@ -551,7 +551,7 @@ static void underflow_up2 (void) { mpfr_t x, y, z, z0, eps; - mp_exp_t n; + mpfr_exp_t n; int inex; int rnd; @@ -608,7 +608,7 @@ underflow_up3 (void) int i; mpfr_init2 (x, 64); - mpfr_init2 (y, sizeof (mp_exp_t) * CHAR_BIT); + mpfr_init2 (y, sizeof (mpfr_exp_t) * CHAR_BIT); mpfr_init2 (z, 32); mpfr_init2 (z0, 2); @@ -744,7 +744,7 @@ overflow_inv (void) static void alltst (void) { - mp_exp_t emin, emax; + mpfr_exp_t emin, emax; ext = 0; tst (); |