diff --git a/test/libyul/yulOptimizerTests/fullInliner/call_arguments_with_side_effects.yul b/test/libyul/yulOptimizerTests/fullInliner/call_arguments_with_side_effects.yul index 94b0c72d2..2db3a37a8 100644 --- a/test/libyul/yulOptimizerTests/fullInliner/call_arguments_with_side_effects.yul +++ b/test/libyul/yulOptimizerTests/fullInliner/call_arguments_with_side_effects.yul @@ -6,19 +6,21 @@ // Evaluation order in Yul is right to left so fun_revert() should run first. empty(fun_return(), fun_revert()) } +// ==== +// EVMVersion: >=shanghai // ---- // step: fullInliner // // { // { -// let ret_7 := 0 +// let ret_3 := 0 // revert(0, 0) -// let _1 := ret_7 -// let ret_1_10 := 0 +// let _1 := ret_3 +// let ret_1_4 := 0 // return(0, 0) -// let _2 := ret_1_10 -// let b_13 := _1 -// let a_14 := _2 +// let _2 := ret_1_4 +// let b_5 := _1 +// let a_6 := _2 // } // function fun_revert() -> ret // { revert(0, 0) }