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

20 lines
299 B
Plaintext

{
let a := caller()
let b := address()
if b { pop(b) b := a }
let c := b
}
// ====
// step: rematerialiser
// ----
// {
// let a := caller()
// let b := address()
// if address()
// {
// pop(address())
// b := caller()
// }
// let c := b
// }