Add changelog entries

This commit is contained in:
Daniel Lupu 2022-06-15 23:27:40 +03:00 committed by wechman
parent b99f85ec65
commit 8498fdf1d4

View File

@ -6,6 +6,8 @@ Language Features:
Compiler Features:
* TypeChecker: Support using library constants in initializers of other constants.
* Yul IR Code Generation: Improved copy routines for arrays with packed storage layout.
* Yul Optimizer: Add rule to convert `mod(mul(X, Y), A)` into `mulmod(X, Y, A)`, if `A` is a power of two.
* Yul Optimizer: Add rule to convert `mod(add(X, Y), A)` into `addmod(X, Y, A)`, if `A` is a power of two.
Bugfixes: