diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-02-13 18:18:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-13 18:18:59 +0800 |
commit | f8810ef9e8891fb198eb213e4b32374d11ae4bbd (patch) | |
tree | b72c4003818b7c06a07e1378a9e4273d72b64320 | |
parent | 729c6a95f8615586969e206b0b796011b3824adf (diff) | |
parent | 927adb8f2aa18206d9efd63c9091c59d215c687e (diff) | |
download | dexon-solidity-f8810ef9e8891fb198eb213e4b32374d11ae4bbd.tar.gz dexon-solidity-f8810ef9e8891fb198eb213e4b32374d11ae4bbd.tar.zst dexon-solidity-f8810ef9e8891fb198eb213e4b32374d11ae4bbd.zip |
Merge pull request #3497 from ethereum/modandchangelog
Mention mod-and-replacement in changelog.
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index db425291..3bdd366d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,7 @@ Features: * Limit the number of warnings raised for creating abstract contracts. * Inline Assembly: Issue warning for using jump labels (already existed for jump instructions). * Inline Assembly: Support some restricted tokens (return, byte, address) as identifiers in Julia mode. + * Optimiser: Replace `x % 2**i` by `x & (2**i-1)`. * SMT Checker: If-else branch conditions are taken into account in the SMT encoding of the program variables. * Syntax Checker: Deprecate the ``var`` keyword (and mark it an error as experimental 0.5.0 feature). |