aboutsummaryrefslogtreecommitdiffstats
path: root/src/mp_comba.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-13 20:21:46 +0000
committerlloyd <[email protected]>2008-09-13 20:21:46 +0000
commitee7af60f61798863e775304b5bf7a5bc186e14e6 (patch)
tree5653c4b285667b116f23cde640f5a73848ca47da /src/mp_comba.cpp
parent7d6466b60d9992bb54e5443cf8a1636fc517961c (diff)
Enable square optimization for 16x16
Diffstat (limited to 'src/mp_comba.cpp')
-rw-r--r--src/mp_comba.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mp_comba.cpp b/src/mp_comba.cpp
index 635a7547a..c7a9c964c 100644
--- a/src/mp_comba.cpp
+++ b/src/mp_comba.cpp
@@ -384,8 +384,6 @@ void bigint_comba_mul8(word z[16], const word x[8], const word y[8])
*************************************************/
void bigint_comba_sqr16(word z[32], const word x[16])
{
- return bigint_comba_mul16(z, x, x);
-
word w2 = 0, w1 = 0, w0 = 0;
word3_muladd(&w2, &w1, &w0, x[ 0], x[ 0]);