[previous] 1003 [next] [E] '#%s' is a language extension for in-line assembler. All statements located between #asm and #endasm will be ignored.
Language extensions REFERENCE - ISO:C90-6.8 Preprocessing Directives - Syntax

QA·C will ignore any code which is bounded by the two preprocessing directives #asm and #endasm provided that the language extension option "-ex asm" is enabled. Message 1003 will be generated on each directive.

For example:


/*PRQA S 2017,3408 ++*/


extern void foo(void)
{
#asm            /* Message 1003 */

MOV DX, AX
XOR AX, 0x7F

#endasm         /* Message 1003 */
}

QA·C Source Code Analyser 8.1.2
© 2013 Programming Research.
www.programmingresearch.com
Personality Groups | Glossary | Message Index Contents