solidity/test/libyul/yulOptimizerTests/fullSimplify/constants.yul

11 lines
121 B
Plaintext
Raw Normal View History

{
let a := add(1, mul(3, 4))
mstore(0, a)
}
2019-04-01 14:33:46 +00:00
// ====
// step: fullSimplify
// ----
// {
// mstore(0, 13)
// }