diff options
author | chriseth <chris@ethereum.org> | 2017-01-27 21:10:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-27 21:10:22 +0800 |
commit | b2c35fb41a65dc996189b890f292103d9318b53e (patch) | |
tree | cd2a2fd222994c64d5ad946dfb8210848e2fc5e6 /Changelog.md | |
parent | 636e480156130ec44c5b85890ebe0c3792a75061 (diff) | |
parent | bff8fc23e6cc602511b52aaa665e63b948eba068 (diff) | |
download | dexon-solidity-b2c35fb41a65dc996189b890f292103d9318b53e.tar dexon-solidity-b2c35fb41a65dc996189b890f292103d9318b53e.tar.gz dexon-solidity-b2c35fb41a65dc996189b890f292103d9318b53e.tar.bz2 dexon-solidity-b2c35fb41a65dc996189b890f292103d9318b53e.tar.lz dexon-solidity-b2c35fb41a65dc996189b890f292103d9318b53e.tar.xz dexon-solidity-b2c35fb41a65dc996189b890f292103d9318b53e.tar.zst dexon-solidity-b2c35fb41a65dc996189b890f292103d9318b53e.zip |
Merge pull request #1598 from wuestholz/develop
Change translation of implicit throws
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index 7c09407a..8dd1b89c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,6 +9,8 @@ Features: * Metadata: Do not include platform in the version number. * Metadata: Add option to store sources as literal content. * Code generator: Extract array utils into low-level functions. + * Code generator: Internal errors (array out of bounds, etc.) now cause a reversion by using an invalid + instruction (0xfe) instead of an invalid jump. Invalid jump is still kept for explicit throws. Bugfixes: * Code generator: Allow recursive structs. |