MISRA C++:2008 Rule 6-6-4
For any iteration statement there shall be no more than one break or goto statement used for loop termination
Description
Rule Definition
For any iteration statement there shall be no more than one break or goto statement used for loop termination.
Rationale
Using multiple break
or goto
statements within an
iteration statement increases the complexity of the code. For good structured programming,
use a single break
or goto
statement.
Polyspace Implementation
Polyspace® raises this defect when multiple break
statements,
goto
statements, or a combination of these statements are present in a
single loop.
Troubleshooting
If you expect a rule violation but Polyspace does not report it, see Diagnose Why Coding Standard Violations Do Not Appear as Expected.
Examples
Check Information
Group: Statements |
Category: Required |
Version History
Introduced in R2013b