aboutsummaryrefslogtreecommitdiffstats
path: root/test/libyul/yulOptimizerTests/equivalentFunctionCombiner/simple.yul
blob: 2d5b3ef8f9461f67e3dbf5f4bcb2da672d53d5fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  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))
//     }
// }