-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2023-07-19-solidity-0.8.21-release-announcement.md #13
Conversation
@NunoFilipeSantos Here's the snippet about minimal optimizations:
|
Where do you want it? Notable features? |
Yeah, I guess that would be a good place to put it. |
@cameel does this make sense?
|
@NunoFilipeSantos Here's another:
|
Should I add it to the Stack-to-memory mover always enabled via-IR section? |
No, it's a separate thing. It actually should have a separate section, since it's not even a feature. More like warning for tooling people. |
It expands on this bugfix: - Code Generator: Fix not entirely deterministic order of functions in unoptimized Yul output. The choice of C++ compiler in some cases would result in different (but equivalent) bytecode (especially from native binaries vs emscripten binaries). The stack-to-memory mover is about this compiler feature: - Yul Optimizer: Stack-to-memory mover is now enabled by default whenever possible for via IR code generation and pure Yul compilation. and @nikola-matic's bit is about this language feature: - Relax restrictions on initialization of immutable variables. Reads and writes may now happen at any point at construction time outside of functions and modifiers. Explicit initialization is no longer mandatory. They're all separate. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two small adjustments to the part about immutables. Other than that looks good.
Co-authored-by: Kamil Śliwak <cameel2@gmail.com>
Co-authored-by: Kamil Śliwak <cameel2@gmail.com>
Co-authored-by: Nikola Matić <nikola.matic@ethereum.org>
Co-authored-by: Nikola Matić <nikola.matic@ethereum.org>
No description provided.