2 For optimization of jump table conditions, a computeOnly flag was ignored in common subexpression elimination,
3 resulting in an optimization being triggered incorrectly.
22 unsigned char state
= 0;
25 switch (state
) { // Condition in this switch statement was wrongly replaced by constant 0.
26 case 0: state
= 1; break;
27 case 1: state
= 2; break;
28 case 2: state
= 3; break;
29 case 3: state
= 4; break;
30 case 4: state
= 5; break;
31 default: state
= 0; break;