solidity/test/libyul/yulOptimizerTests/fullSimplify/identity_rules_simple.yul
2019-05-16 12:30:05 +02:00

9 lines
109 B
Plaintext

{
let a := mload(0)
mstore(0, sub(a, a))
}
// ====
// step: fullSimplify
// ----
// { mstore(0, 0) }