solidity/test/libyul/yulOptimizerTests/ssaAndBack/single_assign_if.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

19 lines
246 B
Plaintext

{
let a := mload(0)
if mload(1)
{
a := mload(1)
}
mstore(a, 0)
}
// ----
// step: ssaAndBack
//
// {
// {
// let a := mload(0)
// if mload(1) { a := mload(1) }
// mstore(a, 0)
// }
// }