Merge pull request #2615 from NIC619/develop

minor fix on assembly example
This commit is contained in:
Alex Beregszaszi 2017-07-21 13:09:17 +01:00 committed by GitHub
commit 05f4cc8e78

View File

@ -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))))
}
}
}