From 3d7ec48da0eda272e88f3a5391e72a8fcc1c33ac Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 15 Jul 2017 17:19:38 +0200 Subject: 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 --- networking/tls_pstm_montgomery_reduce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'networking/tls_pstm_montgomery_reduce.c') 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) { -- cgit v1.2.3