2019-01-10 19:29:30 +00:00
|
|
|
{
|
|
|
|
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) } }
|
|
|
|
}
|
|
|
|
// ----
|
2020-03-17 22:31:56 +00:00
|
|
|
// step: equivalentFunctionCombiner
|
|
|
|
//
|
2019-01-10 19:29:30 +00:00
|
|
|
// {
|
|
|
|
// f(0)
|
|
|
|
// f(1)
|
|
|
|
// function f(x)
|
|
|
|
// {
|
|
|
|
// switch x
|
2019-05-08 10:41:19 +00:00
|
|
|
// case 0 { mstore(0, 42) }
|
|
|
|
// case 1 { mstore(1, 42) }
|
2019-01-10 19:29:30 +00:00
|
|
|
// }
|
|
|
|
// function g(x_1)
|
|
|
|
// {
|
|
|
|
// switch x_1
|
2019-05-08 10:41:19 +00:00
|
|
|
// case 1 { mstore(1, 42) }
|
|
|
|
// case 0 { mstore(0, 42) }
|
2019-01-10 19:29:30 +00:00
|
|
|
// }
|
|
|
|
// }
|