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