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

12 lines
151 B
Plaintext
Raw Normal View History

{
switch mload(0) default { mstore(1, 2) }
}
// ----
// structuralSimplifier
// {
// pop(mload(0))
// {
// mstore(1, 2)
// }
// }