aboutsummaryrefslogtreecommitdiff
path: root/networking/tls_pstm_montgomery_reduce.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-15 17:19:38 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-15 17:19:38 +0200
commit3d7ec48da0eda272e88f3a5391e72a8fcc1c33ac (patch)
tree4de49b05c4136ef9d72aadd1117898756150cb47 /networking/tls_pstm_montgomery_reduce.c
parent79376ecdbd2fff83795dfcbddf5a0cc5eed3adf9 (diff)
downloadbusybox-3d7ec48da0eda272e88f3a5391e72a8fcc1c33ac.tar.gz
tls: remove last int16 local variables in pstm code
function old new delta pstm_mul_comba 439 447 +8 pstm_sqr_comba 475 478 +3 pstm_montgomery_reduce 399 381 -18 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/1 up/down: 11/-18) Total: -7 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tls_pstm_montgomery_reduce.c')
-rw-r--r--networking/tls_pstm_montgomery_reduce.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tls_pstm_montgomery_reduce.c b/networking/tls_pstm_montgomery_reduce.c
index dc2fe0a48..3391755e1 100644
--- a/networking/tls_pstm_montgomery_reduce.c
+++ b/networking/tls_pstm_montgomery_reduce.c
@@ -345,7 +345,7 @@ int32 pstm_montgomery_reduce(psPool_t *pool, pstm_int *a, pstm_int *m,
{
pstm_digit *c, *_c, *tmpm, mu;
int32 oldused, x, y;
- int16 pa;
+ int pa; //bbox: was int16
pa = m->used;
if (pa > a->alloc) {