MISRA.SWITCH.LABELA switch label belongs to nested compound statement inside switch body. MISRA-C Rule 15.1 (required): A switch label shall only be used when the most closely-enclosing compound statement is the body of a switch statement.The scope of a case or default label shall be the compound statement, which is the body of a switch statement. All case clauses and the default clause shall be at the same scope. MISRA-C++ Rule 6-4-4 (required): A switch-label shall only be used when the most closely-enclosing compound statement is the body of a switch statement.RationaleA switch-label can be placed anywhere within the statements that form the body of a switch statement, potentially leading to unstructured code. To prevent this from happening, the scope of a case-label or default-label shall be the compound statement forming the body of a switch statement. All case-clauses and the default-clause shall be at the same scope. Exampleswitch ( x ) { case 1: // Compliant if ( ... ) { case 2: // Non-compliant DoIt ( ); } break; default: break; } |