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

19 lines
232 B
Plaintext

{
let a := 1
let b := 2
if b { pop(b) b := a }
let c := b
}
// ----
// rematerialiser
// {
// let a := 1
// let b := 2
// if 2
// {
// pop(2)
// b := 1
// }
// let c := b
// }