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

9 lines
109 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
// ----
2019-05-13 16:52:08 +00:00
// { mstore(0, 0) }