aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-10-17 03:39:22 +0800
committerchriseth <chris@ethereum.org>2018-10-25 00:02:08 +0800
commit60f1d52f592b26f7b5b2b1a063f40c3e2f0a0561 (patch)
treebd520358815aa1571c4320f99c791bc7ca23dcf0 /test/libyul/yulOptimizerTests
parent01566c2e1af5b7f655fd593e5e1019e103d739a0 (diff)
downloaddexon-solidity-60f1d52f592b26f7b5b2b1a063f40c3e2f0a0561.tar
dexon-solidity-60f1d52f592b26f7b5b2b1a063f40c3e2f0a0561.tar.gz
dexon-solidity-60f1d52f592b26f7b5b2b1a063f40c3e2f0a0561.tar.bz2
dexon-solidity-60f1d52f592b26f7b5b2b1a063f40c3e2f0a0561.tar.lz
dexon-solidity-60f1d52f592b26f7b5b2b1a063f40c3e2f0a0561.tar.xz
dexon-solidity-60f1d52f592b26f7b5b2b1a063f40c3e2f0a0561.tar.zst
dexon-solidity-60f1d52f592b26f7b5b2b1a063f40c3e2f0a0561.zip
Full suite tests.
Diffstat (limited to 'test/libyul/yulOptimizerTests')
-rw-r--r--test/libyul/yulOptimizerTests/fullSuite/medium.yul26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/libyul/yulOptimizerTests/fullSuite/medium.yul b/test/libyul/yulOptimizerTests/fullSuite/medium.yul
new file mode 100644
index 00000000..45cc555d
--- /dev/null
+++ b/test/libyul/yulOptimizerTests/fullSuite/medium.yul
@@ -0,0 +1,26 @@
+{
+ function allocate(size) -> p {
+ p := mload(0x40)
+ mstore(0x40, add(p, size))
+ }
+ function array_index_access(array, index) -> p {
+ p := add(array, mul(index, 0x20))
+ }
+ pop(allocate(0x20))
+ let x := allocate(0x40)
+ mstore(array_index_access(x, 3), 2)
+}
+// ----
+// fullSuite
+// {
+// {
+// let _12 := 0x20
+// let allocate__7 := 0x40
+// let allocate_p_2 := mload(allocate__7)
+// mstore(allocate__7, add(allocate_p_2, _12))
+// pop(allocate_p_2)
+// let allocate_p_2_1 := mload(allocate__7)
+// mstore(allocate__7, add(allocate_p_2_1, allocate__7))
+// mstore(add(allocate_p_2_1, 96), 2)
+// }
+// }