summaryrefslogtreecommitdiff
path: root/tests/mpcheck-template1.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mpcheck-template1.c')
-rw-r--r--tests/mpcheck-template1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/mpcheck-template1.c b/tests/mpcheck-template1.c
index 771054b..712f8c3 100644
--- a/tests/mpcheck-template1.c
+++ b/tests/mpcheck-template1.c
@@ -33,7 +33,7 @@ FUN (mpfr_prec_t p, unsigned long n)
{
unsigned long i = 0;
mpc_t x, z, t;
- double complex xx, zz;
+ TYPE complex xx, zz;
int inex;
unsigned long errors = 0, max_err_re = 0, max_err_im = 0;
@@ -48,9 +48,9 @@ FUN (mpfr_prec_t p, unsigned long n)
inex = MPC_FOO (z, x, MPC_RNDNN);
mpfr_subnormalize (mpc_realref (z), MPC_INEX_RE(inex), MPFR_RNDN);
mpfr_subnormalize (mpc_imagref (z), MPC_INEX_IM(inex), MPFR_RNDN);
- xx = mpc_get_dc (x, MPC_RNDNN);
+ xx = mpc_get_type (x, MPC_RNDNN);
zz = CFOO (xx);
- mpc_set_dc (t, zz, MPFR_RNDN);
+ mpc_set_type (t, zz, MPFR_RNDN);
if (mpc_cmp (z, t) != 0)
{
unsigned long err_re = ulp_error (mpc_realref (t), mpc_realref (z));