mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
398 B
Plaintext
23 lines
398 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
|
|
// }
|
|
// }
|
|
// }
|