diff options
Diffstat (limited to 'test/libyul/yulOptimizerTests/fullSimplify/identity_rules_simple.yul')
-rw-r--r-- | test/libyul/yulOptimizerTests/fullSimplify/identity_rules_simple.yul | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/libyul/yulOptimizerTests/fullSimplify/identity_rules_simple.yul b/test/libyul/yulOptimizerTests/fullSimplify/identity_rules_simple.yul new file mode 100644 index 00000000..22a358fd --- /dev/null +++ b/test/libyul/yulOptimizerTests/fullSimplify/identity_rules_simple.yul @@ -0,0 +1,11 @@ +{ + let a := mload(0) + mstore(0, sub(a, a)) +} +// ---- +// fullSimplify +// { +// let _1 := 0 +// pop(mload(_1)) +// mstore(_1, 0) +// } |