From b0e210a02b8576828ac64e8b97bd565fd28c8748 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 6 May 2016 13:48:43 +0200 Subject: Make zmul and zsqr (calls low-level functions) inline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/zpowu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/zpowu.c') diff --git a/src/zpowu.c b/src/zpowu.c index 447147d..35247c3 100644 --- a/src/zpowu.c +++ b/src/zpowu.c @@ -24,11 +24,11 @@ zpowu(z_t a, z_t b, unsigned long long int c) zsetu(a, 1); if (c & 1) - zmul_impl(a, a, tb); + zmul_ll(a, a, tb); while (c >>= 1) { - zsqr_impl(tb, tb); + zsqr_ll(tb, tb); if (c & 1) - zmul_impl(a, a, tb); + zmul_ll(a, a, tb); } if (neg) -- cgit v1.2.3-70-g09d2