--diag_suppress=tag{, tag}
Diagnostic messages output by the assembler can be identified
by a tag in the form of {prefix}number,
where the prefix is
A. The --diag_suppress option disables the diagnostic messages
that have the specified tags.
You can specify more than one tag with these options by separating
each tag using a comma.
For example, to suppress the warning messages that have numbers 1293 and 187,
use the following command:
armasm --diag_suppress=1293,187
You can specify the optional assembler prefix A before
the tag number. For example:
armasm --diag_suppress=A1293,A187
If any prefix other than A is included, the message number
is ignored. Diagnostic message tags can be cut and pasted directly
into a command line.
You can also set the tag to:
warning,
to suppress all warnings
error, to suppress all downgradeable
errors.
See also