Changelog: Add missing entry for the 0.8.13 PR that caps the returndata copied for static returns

This commit is contained in:
Kamil Śliwak 2022-07-26 18:19:17 +02:00
parent f917249111
commit 48835b3a73

View File

@ -83,6 +83,7 @@ Compiler Features:
* Language Server: Implements goto-definition. * Language Server: Implements goto-definition.
* Peephole Optimizer: Optimize comparisons in front of conditional jumps and conditional jumps across a single unconditional jump. * Peephole Optimizer: Optimize comparisons in front of conditional jumps and conditional jumps across a single unconditional jump.
* Yul EVM Code Transform: Avoid unnecessary ``pop``s on terminating control flow. * Yul EVM Code Transform: Avoid unnecessary ``pop``s on terminating control flow.
* Yul IR Code Generation: When the result of an external call is statically-sized, ignore any returndata past the size expected by the compiler.
* Yul Optimizer: Remove ``sstore`` and ``mstore`` operations that are never read from. * Yul Optimizer: Remove ``sstore`` and ``mstore`` operations that are never read from.