mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
257 B
Plaintext
19 lines
257 B
Plaintext
{
|
|
for {} calldatasize() { mstore(1, 2) } {
|
|
let x := 7
|
|
mstore(4, 5)
|
|
revert(0, x)
|
|
}
|
|
}
|
|
// ----
|
|
// step: controlFlowSimplifier
|
|
//
|
|
// {
|
|
// if calldatasize()
|
|
// {
|
|
// let x := 7
|
|
// mstore(4, 5)
|
|
// revert(0, x)
|
|
// }
|
|
// }
|