Versions Compared

Key

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

...

Code Block
bgColor#FFcccc
langc
static volatile int **ipp;
static int *ip;
static volatile int i = 0;

printf("i = %d.\n", i);

ipp = &ip; /* producesProduces warnings in modern compilers */
ipp = (int**) &ip; /* constraintConstraint violation, also produces warnings */
*ipp = &i; /* validValid */
if (*ip != 0) { /* validValid */
  /* ... */
}

The assignment ipp = &ip is unsafe because it would allow the valid code that follows to reference the value of the volatile object i through the non-volatile-qualified reference ip. In this example, the compiler may optimize out the entire if block because i != 0 must be false if i is not volatile.

...

This example compiles without warning on Microsoft Visual Studio 2012 when compiled in C mode (/TC) , but causes errors when compiled in C++ mode (/TP).

Version GCC 4.8.1 of GCC generates a warning but compiles successfully.

...

Casting away volatile allows access to an object through a nonvolatile reference . This and can result in undefined and perhaps unintended program behavior.

...

Tool

Version

Checker

Description

Compass/ROSE

 

 

 

GCC

Include Page
GCC_V
GCC_V

 

Can detect violations of this rule when the -Wcast-qual flag is used

LDRA tool suite

Include Page
LDRA_V
LDRA_V

344 S

Fully implemented

PRQA QA-C
Include Page
PRQA_V
PRQA_V
0312Fully implemented

...

Bibliography

[ISO/IEC 9899:2011]Section Subclause 6.7.3, "Type Qualifiers"

 

...