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

13 lines
165 B
Plaintext
Raw Normal View History

{
switch mload(0) default { mstore(1, 2) }
}
2019-04-01 14:33:46 +00:00
// ====
// step: structuralSimplifier
// ----
// {
// pop(mload(0))
// {
// mstore(1, 2)
// }
// }