mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
32 lines
521 B
Plaintext
32 lines
521 B
Plaintext
|
{
|
||
|
// Cannot be removed, because we might run the loop only once
|
||
|
let x := 1
|
||
|
for { } calldataload(0) { mstore(x, 0x42) }
|
||
|
{
|
||
|
if callvalue() {
|
||
|
x := 2 // is preserved because of continue stmt below.
|
||
|
continue
|
||
|
}
|
||
|
x := 3
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// redundantAssignEliminator
|
||
|
// {
|
||
|
// let x := 1
|
||
|
// for {
|
||
|
// }
|
||
|
// calldataload(0)
|
||
|
// {
|
||
|
// mstore(x, 0x42)
|
||
|
// }
|
||
|
// {
|
||
|
// if callvalue()
|
||
|
// {
|
||
|
// x := 2
|
||
|
// continue
|
||
|
// }
|
||
|
// x := 3
|
||
|
// }
|
||
|
// }
|