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

17 lines
203 B
Plaintext

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