diff options
author | chriseth <chris@ethereum.org> | 2018-10-02 00:27:07 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-10-12 21:19:29 +0800 |
commit | d60a2511fdc625928b5a2ee449e39ba78a3d1296 (patch) | |
tree | a885022f3f4d0c89608f161a10d8d668a8fc7e89 /test/libjulia/yulOptimizerTests/expressionJoiner/only_assignment.yul | |
parent | 1d312c8e4073e2e7ce9a23a721013942e1e5c727 (diff) | |
download | dexon-solidity-d60a2511fdc625928b5a2ee449e39ba78a3d1296.tar.gz dexon-solidity-d60a2511fdc625928b5a2ee449e39ba78a3d1296.tar.zst dexon-solidity-d60a2511fdc625928b5a2ee449e39ba78a3d1296.zip |
Expression joiner.
Diffstat (limited to 'test/libjulia/yulOptimizerTests/expressionJoiner/only_assignment.yul')
-rw-r--r-- | test/libjulia/yulOptimizerTests/expressionJoiner/only_assignment.yul | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/libjulia/yulOptimizerTests/expressionJoiner/only_assignment.yul b/test/libjulia/yulOptimizerTests/expressionJoiner/only_assignment.yul new file mode 100644 index 00000000..c7411211 --- /dev/null +++ b/test/libjulia/yulOptimizerTests/expressionJoiner/only_assignment.yul @@ -0,0 +1,16 @@ +{ + // This is not joined because a is referenced multiple times + function f(a) -> x { + a := mload(2) + x := add(a, 3) + } +} +// ---- +// expressionJoiner +// { +// function f(a) -> x +// { +// a := mload(2) +// x := add(a, 3) +// } +// } |