COND

Abbreviation

CO

Arguments

None.

Default

COND

Description

This directive determines whether or not those portions of the source file affected by conditional compilation are displayed in the listing file.
The COND directive forces lines omitted from compilation to appear in the listing file. Line numbers and nesting levels are not output. This allows for easier visual identification.
The effect of this directive takes place one line after it is detected by the preprocessor.

See Also
NOCOND
Example
The following example shows the listing file for a source file compiled with the COND directive.
.
.
.
stmt level source
1 extern unsigned char a, b;
2 unsigned char c;
3
4 main()
5 {
6 1 #if defined (VAX)
c = 13;
#elif defined (_ _TIME_ _)
9 1 b = 14;
10 1 a = 15;
11 1 #endif
12 1 }
.
.
.