solidity/test/libyul/yulOptimizerTests/structuralSimplifier/switch_remove_empty_all.yul
2019-04-03 14:58:20 +02:00

21 lines
247 B
Plaintext

{
let y := 200
switch add(y, 4)
case 0 { }
case 1 { }
default { }
switch mload(4)
case 0 { }
case 1 { }
default { }
}
// ====
// step: structuralSimplifier
// ----
// {
// let y := 200
// pop(add(y, 4))
// pop(mload(4))
// }