projects
/
BearSSL
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
efea83e
)
Removed needless variable shadowing (suggested by Doug Hogan).
author
Thomas Pornin
<pornin@bolet.org>
Wed, 9 Nov 2016 18:58:17 +0000
(19:58 +0100)
committer
Thomas Pornin
<pornin@bolet.org>
Wed, 9 Nov 2016 18:58:17 +0000
(19:58 +0100)
src/int/i31_muladd.c
patch
|
blob
|
history
diff --git
a/src/int/i31_muladd.c
b/src/int/i31_muladd.c
index
3c52077
..
6633d92
100644
(file)
--- a/
src/int/i31_muladd.c
+++ b/
src/int/i31_muladd.c
@@
-44,7
+44,7
@@
br_i31_muladd_small(uint32_t *x, uint32_t z, const uint32_t *m)
return;
}
if (m_bitlen <= 31) {
- uint32_t
hi,
lo;
+ uint32_t lo;
hi = x[1] >> 1;
lo = (x[1] << 31) | z;