blob: 4f3cad360735c94e4d81f241753e33c18b492fce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
f(0)
g(1)
function f(x) { switch x case 0 { mstore(0, 42) } case 1 { mstore(1, 42) } }
function g(x) { switch x case 1 { mstore(1, 42) } case 0 { mstore(0, 42) } }
}
// ----
// equivalentFunctionCombiner
// {
// f(0)
// f(1)
// function f(x)
// {
// switch x
// case 0 {
// mstore(0, 42)
// }
// case 1 {
// mstore(1, 42)
// }
// }
// function g(x_1)
// {
// switch x_1
// case 1 {
// mstore(1, 42)
// }
// case 0 {
// mstore(0, 42)
// }
// }
// }
|