mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
minor fix on assembly example
This commit is contained in:
parent
d70974ea7c
commit
3dcbe68aea
@ -92,7 +92,7 @@ you really know what you are doing.
|
||||
function sumAsm(uint[] _data) returns (uint o_sum) {
|
||||
for (uint i = 0; i < _data.length; ++i) {
|
||||
assembly {
|
||||
o_sum := mload(add(add(_data, 0x20), mul(i, 0x20)))
|
||||
o_sum := add(o_sum, mload(add(add(_data, 0x20), mul(i, 0x20))))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user