diff options
author | chriseth <chris@ethereum.org> | 2017-07-01 23:53:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-01 23:53:01 +0800 |
commit | dd9416be29e9ac22b9b2a33cb9424514067cc6bf (patch) | |
tree | 3478f1e1080388a5320835652528cad88254da05 /Changelog.md | |
parent | 0446893bce2bbf97654459cc4153f91a4d959643 (diff) | |
parent | 0fa2feb3411dd254132ad17a6a8e428551ae3613 (diff) | |
download | dexon-solidity-dd9416be29e9ac22b9b2a33cb9424514067cc6bf.tar.gz dexon-solidity-dd9416be29e9ac22b9b2a33cb9424514067cc6bf.tar.zst dexon-solidity-dd9416be29e9ac22b9b2a33cb9424514067cc6bf.zip |
Merge pull request #2481 from ethereum/mload-optim
MLOAD has side-effects, treat it like that in the optimiser
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 68f2272d..51d72b2a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -20,6 +20,7 @@ Features: * Static Analyzer: Warn about deprecation of ``callcode``. Bugfixes: + * Assembly: mark ``MLOAD`` to have side effects in the optimiser. * Code generator: Use ``REVERT`` instead of ``INVALID`` for generated input validation routines. * Type Checker: Fix address literals not being treated as compile-time constants. * Type Checker: Disallow invoking the same modifier multiple times. @@ -33,6 +34,7 @@ Bugfixes: * Code Generator: Fix negative stack size checks. * Inline Assembly: Enforce function arguments when parsing functional instructions. * Fixed segfault with constant function parameters + * Optimizer: Disallow optimizations involving ``MLOAD`` because it changes ``MSIZE``. ### 0.4.11 (2017-05-03) |