mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
21 lines
243 B
Plaintext
21 lines
243 B
Plaintext
{
|
|
let y := 200
|
|
switch add(y, 4)
|
|
case 0 { }
|
|
case 1 { }
|
|
default { }
|
|
|
|
switch mload(4)
|
|
case 0 { }
|
|
case 1 { }
|
|
default { }
|
|
}
|
|
// ----
|
|
// step: controlFlowSimplifier
|
|
//
|
|
// {
|
|
// let y := 200
|
|
// pop(add(y, 4))
|
|
// pop(mload(4))
|
|
// }
|