diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-15 17:19:38 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-15 17:19:38 +0200 |
commit | 3d7ec48da0eda272e88f3a5391e72a8fcc1c33ac (patch) | |
tree | 4de49b05c4136ef9d72aadd1117898756150cb47 /networking/tls_pstm.c | |
parent | 79376ecdbd2fff83795dfcbddf5a0cc5eed3adf9 (diff) |
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.c')
-rw-r--r-- | networking/tls_pstm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tls_pstm.c b/networking/tls_pstm.c index bd5bae0b7..e12e6c9d4 100644 --- a/networking/tls_pstm.c +++ b/networking/tls_pstm.c @@ -2127,7 +2127,7 @@ int32 pstm_invmod(psPool_t *pool, pstm_int *a, pstm_int *b, pstm_int *c) { pstm_int x, y, u, v, B, D; int32 res; - uint16 neg, sanity; + int neg, sanity; //bbox: was uint16 /* 2. [modified] b must be odd */ if (pstm_iseven (b) == 1) { |