From 98dbfa783e14df637a00c6b739ccb142a57efa9e Mon Sep 17 00:00:00 2001 From: chriseth Date: Wed, 16 Mar 2022 12:50:35 +0100 Subject: [PATCH] Update tests. --- .../yulOptimizerTests/rematerialiser/non_movable_function.yul | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/libyul/yulOptimizerTests/rematerialiser/non_movable_function.yul b/test/libyul/yulOptimizerTests/rematerialiser/non_movable_function.yul index 0d2d8fdf1..7815b1070 100644 --- a/test/libyul/yulOptimizerTests/rematerialiser/non_movable_function.yul +++ b/test/libyul/yulOptimizerTests/rematerialiser/non_movable_function.yul @@ -1,5 +1,5 @@ { - function f(x) -> y {} + function f(x) -> y { log0(0, 0x20) } let a := 1 let b := f(a) let c := a @@ -14,5 +14,5 @@ // let c := 1 // mstore(add(1, b), 1) // function f(x) -> y -// { } +// { log0(0, 0x20) } // }