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

23 lines
315 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 { y := 100 }
}
2019-04-01 14:33:46 +00:00
// ====
// step: structuralSimplifier
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 {
// y := 100
// }
// }