added changelog entry for optimizer

This commit is contained in:
nishant-sachdeva 2022-11-11 02:19:16 +05:30
parent 77a9f8ac43
commit 149303d02d

View File

@ -10,6 +10,7 @@ Compiler Features:
* Standard JSON: Add a boolean field `settings.metadata.appendCBOR` that skips CBOR metadata from getting appended at the end of the bytecode.
* Yul Optimizer: Allow replacing the previously hard-coded cleanup sequence by specifying custom steps after a colon delimiter (``:``) in the sequence string.
* Language Server: Add basic document hover support.
* Optimizer: Added optimization rule ``and(shl(X, Y), shl(X, Z)) => shl(X, and(Y, Z))``.
Bugfixes: