[previous] 3664 [next] [E] Using a dot operator to access an individual bit is a language extension.
Language extensions

A dot operator ('.'), is being used in a non-standard way. Some compilers permit individual bits of an object to be addressed using the character "." as a special operator.

The objects in question will have been defined using non-standard data types which QAC does not support directly. However such code can usually be parsed by redefining the data type to a standard integral type (using a configuration macro),

For example:


/*PRQA S 2017,3408,3447 ++*/

extern unsigned int a;

extern void foo(void)
{
    a.1 = 0u;                           /* Message 3664 */
}


MISRA C:2012 Rules applicable to message 3664:

Rule-1.2  (Advisory) Language extensions should not be used


QA·C Source Code Analyser 8.1
MISRA C:2012 Compliance Module 1.0
© 2012 Programming Research.
www.programmingresearch.com
Personality Groups | Glossary | Message Index | MISRA C:2012 Rule Index Contents