solidity/test/libyul/yulOptimizerTests/controlFlowSimplifier/terminating_for_nested_reversed.yul
2019-05-13 18:58:55 +02:00

23 lines
403 B
Plaintext

{
for {} calldatasize() { mstore(8, 9) } {
for {} calldatasize() { mstore(1, 2) } {
mstore(4, 5)
continue
}
break
}
}
// ====
// step: controlFlowSimplifier
// ----
// {
// if calldatasize()
// {
// for { } calldatasize() { mstore(1, 2) }
// {
// mstore(4, 5)
// continue
// }
// }
// }