solidity/test/libyul/yulOptimizerTests/unusedAssignEliminator/switch_overwrite_in_all.yul

20 lines
324 B
Plaintext
Raw Normal View History

2018-10-23 13:55:48 +00:00
{
let x
// Will be overwritten in all branches
x := 1
switch calldataload(0)
case 0 { x := 2 }
default { x := 3 }
mstore(x, 0)
}
// ----
2021-11-23 09:42:18 +00:00
// step: unusedAssignEliminator
//
2018-10-23 13:55:48 +00:00
// {
// let x
// switch calldataload(0)
// case 0 { x := 2 }
// default { x := 3 }
2018-10-23 13:55:48 +00:00
// mstore(x, 0)
// }