aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-04-03 22:58:11 +0800
committerGitHub <noreply@github.com>2018-04-03 22:58:11 +0800
commit0edce4b570c157927933697b30f0f94cbdf173b2 (patch)
treea7ec50f920090e529b435e878e4df8cedd1f0eb4 /Changelog.md
parent7753249f646f239819c62ab6847438dc84b6e04b (diff)
parentdeadff263fbf4d5da911d7c544821cc77081a6d3 (diff)
downloaddexon-solidity-0edce4b570c157927933697b30f0f94cbdf173b2.tar.gz
dexon-solidity-0edce4b570c157927933697b30f0f94cbdf173b2.tar.zst
dexon-solidity-0edce4b570c157927933697b30f0f94cbdf173b2.zip
Merge pull request #3693 from ethereum/optimizeMLOAD
Optimize across MLOAD if MSIZE is not used.
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index 70e98751..34c3b0e9 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,9 +1,11 @@
### 0.4.22 (unreleased)
Features:
+ * Code Generator: Initialize arrays without using ``msize()``.
* Commandline interface: Error when missing or inaccessible file detected. Suppress it with the ``--ignore-missing`` flag.
* General: Support accessing dynamic return data in post-byzantium EVMs.
* Interfaces: Allow overriding external functions in interfaces with public in an implementing contract.
+ * Optimizer: Optimize across ``mload`` if ``msize()`` is not used.
* Syntax Checker: Issue warning for empty structs (or error as experimental 0.5.0 feature).
Bugfixes: