![]() |
![]() |
0609 | ![]() |
||||
![]() | |||||||
| ISO C90 Conformance limits | REFERENCE - ISO:C90-5.2.4.1 Translation Limits | ||||||
The translation limits specified in the ISO:C Standard define a minimum set of conditions which a compiler must support in order to be described as conforming. In practice, compilers will often tolerate code which exceeds these minimal requirements. However, in order to ensure portability, it is advisable to avoid writing code that assumes a level of compiler capability which may not always be supported. Message 0609 identifies a declaration which is constructed from more than 12 'derived type declarators', the minimum requirement of the ISO:C90 standard. The derived type declarators are:
/*PRQA S 2017,3132,3205,3211,3408 ++*/
int *************x; /* Message 0609 */
int a[2][1][2][1][2][1][2][1][2][1][2][1][2]; /* Message 0609 */
int ***b[2][1][2][1][2][1][2][1][2][1]; /* Message 0609 */
typedef int (************FUNCPTR3) (int p); /* Message 0609 */
MISRA-C:2004 Rules applicable to message 0609:
| Rule 1.1 (Required) | All code shall conform to ISO/IEC 9899:1990 C programming language, ISO 9899, amended and corrected by ISO/IEC 9899/COR1:1995, ISO/IEC 9899/AMD1:1995, and ISO/IEC 9899/COR2: 1996192 |
![]() | ||
| QA·C Source Code Analyser 8.1
MISRA-C:2004 Compliance Module 3.2 © 2012 Programming Research. www.programmingresearch.com | Personality Groups | Glossary | Message Index | MISRA-C:2004 Rule Index | Contents |