diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-05-08 01:09:52 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-12 16:32:19 +0800 |
commit | f33dc92cbd908a6d852368fa30144bda9e8da439 (patch) | |
tree | a8bb2fd5921c71a8c898564a96ec1ee54d206dc6 /Changelog.md | |
parent | 8999a2f375410a29bae46b8e87a70c62036c880d (diff) | |
download | dexon-solidity-f33dc92cbd908a6d852368fa30144bda9e8da439.tar dexon-solidity-f33dc92cbd908a6d852368fa30144bda9e8da439.tar.gz dexon-solidity-f33dc92cbd908a6d852368fa30144bda9e8da439.tar.bz2 dexon-solidity-f33dc92cbd908a6d852368fa30144bda9e8da439.tar.lz dexon-solidity-f33dc92cbd908a6d852368fa30144bda9e8da439.tar.xz dexon-solidity-f33dc92cbd908a6d852368fa30144bda9e8da439.tar.zst dexon-solidity-f33dc92cbd908a6d852368fa30144bda9e8da439.zip |
Use proper SAR for signed right shifts and emulate on pre-constantinople.
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 0050f9a6..d5b440b2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -8,6 +8,7 @@ Breaking Changes: * Commandline interface: Require ``-`` if standard input is used as source. * General: New keywords: ``calldata`` * General: ``continue`` in a ``do...while`` loop jumps to the condition (it used to jump to the loop body). Warning: this may silently change the semantics of existing code. + * General: Signed right shift uses proper arithmetic shift, i.e. rounding towards negative infinity. Warning: this may silently change the semantics of existing code! * Introduce ``emit`` as a keyword instead of parsing it as identifier. * Type Checker: Disallow arithmetic operations for Boolean variables. * Disallow trailing dots that are not followed by a number. |