solidity/test/libyul/yulOptimizerTests/redundantAssignEliminator/for.yul
2018-10-24 13:24:25 +02:00

27 lines
394 B
Plaintext

{
for {
let a := 2
// Should not be removed, even though you might think
// it goes out of scope
a := 3
} a { a := add(a, 1) }
{
a := 7
}
}
// ----
// redundantAssignEliminator
// {
// for {
// let a := 2
// a := 3
// }
// a
// {
// a := add(a, 1)
// }
// {
// a := 7
// }
// }