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

13 lines
161 B
Plaintext
Raw Normal View History

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