aboutsummaryrefslogtreecommitdiffstats
path: root/test/libjulia/yulOptimizerTests/fullInliner/multi_fun.yul
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-10-11 23:14:59 +0800
committerchriseth <chris@ethereum.org>2018-10-12 00:41:26 +0800
commit9cd577abe9d6a04147160ec2b14988dc5b4f5a28 (patch)
tree533ea1b7b6037daab2780bbd79e4a091aabb44df /test/libjulia/yulOptimizerTests/fullInliner/multi_fun.yul
parent83ab8e7f7897d87e90e534e3272e916f714a9727 (diff)
downloaddexon-solidity-9cd577abe9d6a04147160ec2b14988dc5b4f5a28.tar.gz
dexon-solidity-9cd577abe9d6a04147160ec2b14988dc5b4f5a28.tar.zst
dexon-solidity-9cd577abe9d6a04147160ec2b14988dc5b4f5a28.zip
Move tests for full inliner.
Diffstat (limited to 'test/libjulia/yulOptimizerTests/fullInliner/multi_fun.yul')
-rw-r--r--test/libjulia/yulOptimizerTests/fullInliner/multi_fun.yul40
1 files changed, 40 insertions, 0 deletions
diff --git a/test/libjulia/yulOptimizerTests/fullInliner/multi_fun.yul b/test/libjulia/yulOptimizerTests/fullInliner/multi_fun.yul
new file mode 100644
index 00000000..94bbe5dc
--- /dev/null
+++ b/test/libjulia/yulOptimizerTests/fullInliner/multi_fun.yul
@@ -0,0 +1,40 @@
+{
+ function f(a) -> x { x := add(a, a) }
+ function g(b, c) -> y { y := mul(mload(c), f(b)) }
+ let y := g(f(3), 7)
+}
+// ----
+// fullInliner
+// {
+// {
+// let g_c := 7
+// let f_a_1 := 3
+// let f_x_1
+// {
+// f_x_1 := add(f_a_1, f_a_1)
+// }
+// let g_y
+// {
+// let g_f_a := f_x_1
+// let g_f_x
+// {
+// g_f_x := add(g_f_a, g_f_a)
+// }
+// g_y := mul(mload(g_c), g_f_x)
+// }
+// let y_1 := g_y
+// }
+// function f(a) -> x
+// {
+// x := add(a, a)
+// }
+// function g(b, c) -> y
+// {
+// let f_a := b
+// let f_x
+// {
+// f_x := add(f_a, f_a)
+// }
+// y := mul(mload(c), f_x)
+// }
+// }