NOCOND

Abbreviation

NOCO

Arguments

None.

Default

COND

Description

The NOCOND directive determines whether or not those portions of the source file affected by conditional compilation are displayed in the listing file.
This directive also prevents lines omitted from compilation from appearing in the listing file.

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