solidity/test/libyul/yulOptimizerTests/commonSubexpressionEliminator/branches_if.yul

14 lines
178 B
Plaintext
Raw Normal View History

{
let b := 1
if b { b := 1 }
let c := 1
}
2019-04-01 14:33:46 +00:00
// ====
// step: commonSubexpressionEliminator
// ----
// {
// let b := 1
// if b { b := b }
// let c := 1
// }