diff options
author | chriseth <chris@ethereum.org> | 2018-11-28 23:33:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-28 23:33:56 +0800 |
commit | 463951e8cdd9d3d36b4d1b1e1dd41bb8f54bb73c (patch) | |
tree | 53a149e1c3a46758b8270747ab0c1fd32737b1e5 /Changelog.md | |
parent | 937891bc0a8494a783a8925c3c4e03e6ccd12f1d (diff) | |
parent | 50351fb8e2f318998d73f8e7043a8a56c3a6c06a (diff) | |
download | dexon-solidity-463951e8cdd9d3d36b4d1b1e1dd41bb8f54bb73c.tar.gz dexon-solidity-463951e8cdd9d3d36b4d1b1e1dd41bb8f54bb73c.tar.zst dexon-solidity-463951e8cdd9d3d36b4d1b1e1dd41bb8f54bb73c.zip |
Merge pull request #5530 from ethereum/fix-ast-segfault
Fixes crash on empty runtime code.
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index 4defbbe4..7fd95566 100644 --- a/Changelog.md +++ b/Changelog.md @@ -16,6 +16,7 @@ Compiler Features: Bugfixes: * Assembly output: Do not mix in/out jump annotations with arguments. + * Commandline interface: Fix crash when using ``--ast`` on empty runtime code. * Code Generator: Annotate jump from calldata decoder to function as "jump in". * Type Checker: Properly detect different return types when overriding an external interface function with a public contract function. * Optimizer: Fix nondeterminism bug related to the boost version and constants representation. The bug only resulted in less optimal but still correct code because the generated routine is always verified to be correct. |