solidity/test/libyul/yulOptimizerTests/commonSubexpressionEliminator/branches_if.yul
2018-10-15 11:52:35 +02:00

16 lines
189 B
Plaintext

{
let b := 1
if b { b := 1 }
let c := 1
}
// ----
// commonSubexpressionEliminator
// {
// let b := 1
// if b
// {
// b := b
// }
// let c := 1
// }