solidity/test/libyul/yulOptimizerTests/equivalentFunctionCombiner/simple.yul
2019-04-03 14:58:20 +02:00

22 lines
316 B
Plaintext

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