solidity/test/libyul/yulOptimizerTests/controlFlowSimplifier/terminating_for_nested_reversed.yul

23 lines
398 B
Plaintext
Raw Normal View History

2019-05-10 11:19:02 +00:00
{
for {} calldatasize() { mstore(8, 9) } {
for {} calldatasize() { mstore(1, 2) } {
mstore(4, 5)
continue
}
break
}
}
// ----
// step: controlFlowSimplifier
//
2019-05-10 11:19:02 +00:00
// {
// if calldatasize()
// {
// for { } calldatasize() { mstore(1, 2) }
// {
// mstore(4, 5)
// continue
// }
// }
// }