solidity/test/libyul/yulOptimizerTests/equivalentFunctionCombiner/simple.yul

21 lines
302 B
Plaintext
Raw Normal View History

{
f()
g()
function f() { mstore(1, mload(0)) }
function g() { mstore(1, mload(0)) }
}
// ----
// equivalentFunctionCombiner
// {
// f()
// f()
// function f()
// {
// mstore(1, mload(0))
// }
// function g()
// {
// mstore(1, mload(0))
// }
// }