mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
427 B
Plaintext
23 lines
427 B
Plaintext
{
|
|
let y := mload(0x20)
|
|
for {} and(y, 8) { if y { revert(0, 0) } } {
|
|
if y { continue }
|
|
sstore(1, y)
|
|
}
|
|
if y { revert(0, 0) }
|
|
}
|
|
// ====
|
|
// step: fullSuite
|
|
// ----
|
|
// {
|
|
// {
|
|
// let y := mload(0x20)
|
|
// for { } and(y, 8) { if y { revert(0, 0) } }
|
|
// {
|
|
// if y { continue }
|
|
// sstore(1, 0)
|
|
// }
|
|
// if y { revert(0, 0) }
|
|
// }
|
|
// }
|