solidity/test/libyul/yulOptimizerTests/fullSimplify/reversed.yul

12 lines
147 B
Plaintext
Raw Normal View History

{
let a := add(0, mload(0))
mstore(0, a)
}
2019-04-01 14:33:46 +00:00
// ====
// step: fullSimplify
// ----
// {
// let _1 := 0
// mstore(_1, mload(_1))
// }