summaryrefslogtreecommitdiff
path: root/tests/t-constants.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2008-11-20 23:00:21 +0100
committerTorbjorn Granlund <tege@gmplib.org>2008-11-20 23:00:21 +0100
commit1521f942d9f85ccd1404c31d7c608c0497b487f4 (patch)
treeed7d7d0093619e4de4174673249d85f0d059b69c /tests/t-constants.c
parent9d1ddd7c747d7d904ed10d9111ee085bd7d5a0f8 (diff)
downloadgmp-1521f942d9f85ccd1404c31d7c608c0497b487f4.tar.gz
Rename modlimb_invert to binvert_limb.
Diffstat (limited to 'tests/t-constants.c')
-rw-r--r--tests/t-constants.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t-constants.c b/tests/t-constants.c
index 9051f2a5b..ef63c09c9 100644
--- a/tests/t-constants.c
+++ b/tests/t-constants.c
@@ -248,7 +248,7 @@ main (int argc, char *argv[])
ASSERT_ALWAYS_LIMB (MODLIMB_INVERSE_3);
{
mp_limb_t modlimb_inverse_3_calc;
- modlimb_invert (modlimb_inverse_3_calc, CNST_LIMB(3));
+ binvert_limb (modlimb_inverse_3_calc, CNST_LIMB(3));
ASSERT_ALWAYS_LIMB (modlimb_inverse_3_calc);
CHECK_LIMB (MODLIMB_INVERSE_3, modlimb_inverse_3_calc);
}