Start here

Home
About Klocwork
What's new
Fixed issues
Release notes
Installation

Reference

C/C++ checkers
Java checkers
C# checkers
MISRA C 2004 checkers
MISRA C++ 2008 checkers
MISRA C 2012 checkers
MISRA C 2012 checkers with Amendment 1
Commands
Metrics
Troubleshooting
Reference

Product components

C/C++ Integration build analysis
Java Integration build analysis
Desktop analysis
Refactoring
Klocwork Static Code Analysis
Klocwork Code Review
Structure101
Tuning
Custom checkers

Coding environments

Visual Studio
Eclipse for C/C++
Eclipse for Java
IntelliJ IDEA
Other

Administration

Project configuration
Build configuration
Administration
Analysis performance
Server performance
Security/permissions
Licensing
Klocwork Static Code Analysis Web API
Klocwork Code Review Web API

Community

View help online
Visit RogueWave.com
Klocwork Support
Rogue Wave Videos

Legal

Legal information

MISRA.LOGIC.POSTFIX

Operand in a logical 'and' or 'or' expression is not a postfix expression.

MISRA-C++ Rule 5-2-1 (required): Each operand of a logical && or || shall be a postfix-expression.

Rationale

The effect of this rule is to require that operands are appropriately parenthesized. Parentheses are important in this situation both for readability of code and for ensuring that the behaviour is as the developer intended.

Exception

Where an expression consists of either a sequence of only logical && or a sequence of only logical ||, extra parentheses are not required.

Example

if ( x == 0 && ishigh )     // Non-compliant
if ( ( x == 0 ) && ishigh ) // Compliant
if ( x || y || z )          // Compliant by exception,
                            // if x, y and z bool
if ( x || y && z )          // Non-compliant
if ( x || ( y && z ) )      // Compliant
if ( x && !y )              // Non-compliant
if ( x && ( !y ) )          // Compliant
if ( is_odd( y ) && x )     // Compliant
if ( ( x > c1 ) && ( y > c2 ) && ( z > c3 ) )     // Compliant -
                                                  // exception
if ( ( x > c1 ) && ( y > c2 ) || ( z > c3 ) )     // Non-compliant
if ( ( x > c1 ) && ( ( y > c2 ) || ( z > c3 ) ) ) // Compliant as
                                                  // extra() used

Note that this rule is a special case of Rule 5—0—2.