solidity/test/libyul/yulOptimizerTests/redundantAssignEliminator/switch_overwrite_use_combination.yul
2018-10-24 13:24:25 +02:00

24 lines
391 B
Plaintext

{
let x
// Will be used in some and overwritten in others
x := 1
switch calldataload(0)
case 0 { x := 2 }
default { mstore(x, 1) }
mstore(x, 0)
}
// ----
// redundantAssignEliminator
// {
// let x
// x := 1
// switch calldataload(0)
// case 0 {
// x := 2
// }
// default {
// mstore(x, 1)
// }
// mstore(x, 0)
// }