aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-05-08 01:09:52 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-06-12 16:32:19 +0800
commitf33dc92cbd908a6d852368fa30144bda9e8da439 (patch)
treea8bb2fd5921c71a8c898564a96ec1ee54d206dc6 /Changelog.md
parent8999a2f375410a29bae46b8e87a70c62036c880d (diff)
downloaddexon-solidity-f33dc92cbd908a6d852368fa30144bda9e8da439.tar.gz
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.md1
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.