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

19 lines
310 B
Plaintext
Raw Normal View History

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