solidity/test/libyul/yulOptimizerTests/fullSimplify/including_function_calls.yul
Daniel Kirchner 10618188dd Update tests.
2021-11-09 14:34:05 +01:00

14 lines
184 B
Plaintext

{
function f() -> a {}
let b := add(7, sub(f(), 7))
mstore(b, 0)
}
// ----
// step: fullSimplify
//
// {
// { mstore(f(), 0) }
// function f() -> a
// { }
// }