solidity/test/libyul/yulOptimizerTests/redundantAssignEliminator/for_rerun.yul
2019-04-03 14:58:20 +02:00

29 lines
448 B
Plaintext

{
let x
// Cannot be removed, because we might run the loop only once
x := 1
for { } calldataload(0) { }
{
mstore(x, 2)
// Cannot be removed because of the line above
x := 2
}
x := 3
}
// ====
// step: redundantAssignEliminator
// ----
// {
// let x
// x := 1
// for {
// }
// calldataload(0)
// {
// }
// {
// mstore(x, 2)
// x := 2
// }
// }