We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Constant Folding
Evaluate all expressions which can be evaluated at compile time
c := add(100, 15) a := add(c, 50) b := add(b, 10)
Should compiled down to a block which just PUSH's the result of 175 onto the stack.
175
Test Cases
{ let c:u32 := add(100, 15) let a:u32 := sub(c, 50) let b:u32 := mul(a, 10) let d:u32 := div(b, 2) }
use.std::math::u256 begin # Assigning to d # # u32 literal 425 # push.425 end
{ let c := add(100, 15) let a := sub(c, 50) let b := mul(a, 10) let d := div(b, 2) }
use.std::math::u256 begin # Assigning to d # # u256 literal: 425 # push.425 push.0 push.0 push.0 push.0 push.0 push.0 push.0 end
Sorry, something went wrong.
ControlCplusControlV
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: