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

17 lines
217 B
Plaintext
Raw Normal View History

2019-03-05 18:49:34 +00:00
{
let y := 200
switch calldataload(0)
2019-03-05 18:49:34 +00:00
case 0 { }
case 1 { y := 9 }
default { }
}
// ----
// structuralSimplifier
// {
// let y := 200
// if eq(1, calldataload(0))
2019-03-06 10:33:27 +00:00
// {
2019-03-05 18:49:34 +00:00
// y := 9
// }
// }