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

18 lines
280 B
Plaintext
Raw Normal View History

{
f()
g()
function f() { mstore(1, mload(0)) }
function g() { mstore(1, mload(0)) }
}
2019-04-01 14:33:46 +00:00
// ====
// step: equivalentFunctionCombiner
// ----
// {
// f()
// f()
// function f()
// { mstore(1, mload(0)) }
// function g()
// { mstore(1, mload(0)) }
// }