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

13 lines
183 B
Plaintext
Raw Normal View History

{
switch calldataload(0) case 2 { mstore(0, 0) }
}
2019-04-01 14:33:46 +00:00
// ====
// step: structuralSimplifier
// ----
// {
// if eq(2, calldataload(0))
// {
// mstore(0, 0)
// }
// }