solidity/test/libyul/yulOptimizerTests/structuralSimplifier/empty_if_movable_condition.yul

9 lines
125 B
Plaintext
Raw Normal View History

{ let a := mload(0) if a {} }
2019-04-01 14:33:46 +00:00
// ====
// step: structuralSimplifier
// ----
// {
// let a := mload(0)
// pop(a)
// }