solidity/test/libyul/yulOptimizerTests/ssaTransform/switch.yul
2018-10-18 18:56:22 +02:00

27 lines
541 B
Plaintext

{
let a := mload(0)
// This could be more efficient:
// all cases could use the value of the variable from just before
// the switch and not just the first
switch a
case 0 { a := add(a, 4) }
default { a := add(a, 8) }
mstore(0, a)
}
// ----
// ssaTransform
// {
// let a_1 := mload(0)
// let a := a_1
// switch a_1
// case 0 {
// let a_2 := add(a_1, 4)
// a := a_2
// }
// default {
// let a_3 := add(a, 8)
// a := a_3
// }
// mstore(0, a)
// }