solidity/test/libyul/yulOptimizerTests/redundantAssignEliminator/for.yul

27 lines
394 B
Plaintext
Raw Normal View History

2018-10-23 13:55:48 +00:00
{
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
// }
// }