aboutsummaryrefslogtreecommitdiffstats
path: root/test/libjulia/yulOptimizerTests/fullInliner/inside_condition.yul
diff options
context:
space:
mode:
Diffstat (limited to 'test/libjulia/yulOptimizerTests/fullInliner/inside_condition.yul')
-rw-r--r--test/libjulia/yulOptimizerTests/fullInliner/inside_condition.yul32
1 files changed, 0 insertions, 32 deletions
diff --git a/test/libjulia/yulOptimizerTests/fullInliner/inside_condition.yul b/test/libjulia/yulOptimizerTests/fullInliner/inside_condition.yul
deleted file mode 100644
index ae25e9a3..00000000
--- a/test/libjulia/yulOptimizerTests/fullInliner/inside_condition.yul
+++ /dev/null
@@ -1,32 +0,0 @@
-// This tests that breaking the expression inside the condition works properly.
-{
- if gt(f(mload(1)), mload(0)) {
- sstore(0, 2)
- }
- function f(a) -> r {
- a := mload(a)
- r := add(a, calldatasize())
- }
-}
-// ----
-// fullInliner
-// {
-// {
-// let _1 := mload(0)
-// let f_a := mload(1)
-// let f_r
-// {
-// f_a := mload(f_a)
-// f_r := add(f_a, calldatasize())
-// }
-// if gt(f_r, _1)
-// {
-// sstore(0, 2)
-// }
-// }
-// function f(a) -> r
-// {
-// a := mload(a)
-// r := add(a, calldatasize())
-// }
-// }