regenerate fp_sqr_comba_small_set.c

This commit is contained in:
Steffen Jaeckel 2014-06-12 11:00:30 +02:00
parent 6673bd99ce
commit 7993b1b66c

View File

@ -6,8 +6,8 @@ void fp_sqr_comba_small(fp_int *A, fp_int *B)
{ {
fp_digit *a, b[32], c0, c1, c2, sc0, sc1, sc2; fp_digit *a, b[32], c0, c1, c2, sc0, sc1, sc2;
#ifdef TFM_ISO #ifdef TFM_ISO
fp_word tt; fp_word tt;
#endif #endif
switch (A->used) { switch (A->used) {
case 1: case 1:
a = A->dp; a = A->dp;
@ -1512,6 +1512,7 @@ void fp_sqr_comba_small(fp_int *A, fp_int *B)
memcpy(B->dp, b, 32 * sizeof(fp_digit)); memcpy(B->dp, b, 32 * sizeof(fp_digit));
fp_clamp(B); fp_clamp(B);
break; break;
} }
} }