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