Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note that adding a default case to a switch statement, even when all possible switch labels are specified, is an exception (MSC07-C-EX1) to MSC07-C. Detect and remove dead code.

...

Tool

Version

Checker

Description

Compass/ROSE

  

Can detect some violations of this recommendation. In particular, it flags switch statements that do not have a default clause. ROSE should detect "fake switches" as well (that is, a chain of if statements each checking the value of the same variable). These if statements should always end in an else clause, or they should mathematically cover every possibility. For instance, consider the following:

  if (x > 0) {
	  /* ... */
  } else if (x < 0) {
    /* ... */
  } else if (x == 0) {
    /* ... */
  }
GCC
Include Page
GCC_V
GCC_V
 

Can detect some violations of this recommendation when the -Wswitch and -Wswitch-default flags are used

 Klocwork 
Include Page
Klocwork_V
Klocwork_V
 LA_UNUSED 

LDRA tool suite

Include Page
LDRA_V
LDRA_V
48 S, 59 SFully implemented
Parasoft C/C++test9.5MISRA2012-RULE-15_7, MISRA2004-15_3 
PRQA QA-C
Include Page
PRQA QA-C_v
PRQA QA-C_v

0597
1460
1470
1472

2000
2002
2004

Fully implemented
SonarQube C/C++ Plugin
Include Page
SonarQube C/C++ Plugin_V
SonarQube C/C++ Plugin_V

ElseIfWithoutElse

SwitchWithoutDefault

Fully implemented

...