diff options
Diffstat (limited to 'test/libjulia/yulOptimizerTests/fullInliner/simple.yul')
-rw-r--r-- | test/libjulia/yulOptimizerTests/fullInliner/simple.yul | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/test/libjulia/yulOptimizerTests/fullInliner/simple.yul b/test/libjulia/yulOptimizerTests/fullInliner/simple.yul deleted file mode 100644 index dd1a4e0a..00000000 --- a/test/libjulia/yulOptimizerTests/fullInliner/simple.yul +++ /dev/null @@ -1,26 +0,0 @@ -{ - function f(a) -> x { - let r := mul(a, a) - x := add(r, r) - } - let y := add(f(sload(mload(2))), mload(7)) -} -// ---- -// fullInliner -// { -// { -// let _1 := mload(7) -// let f_a := sload(mload(2)) -// let f_x -// { -// let f_r := mul(f_a, f_a) -// f_x := add(f_r, f_r) -// } -// let y := add(f_x, _1) -// } -// function f(a) -> x -// { -// let r := mul(a, a) -// x := add(r, r) -// } -// } |