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