Everything
11.3.7 An option depending on the order of specification of options

Option "-no_warning" has no effect if the order of specification of options is inappropriate.

Example

"-no_warning" has no effect in the following case.
-define=xxxx -undefine=xxxx -no_warning=50649

 

To suppress a warning message, perform either of the followings.

-

When the assember is invoked via the compile driver,

-

specify compile option "-no_warning_num=50649", or

-

specify "-asmopt=-no_warning=50649" before other options.

-

When the assembler is invoked directly,

-

specify "-no_warning" before the other options.

Example

"-no_warning" has an effect in the following case.
-no_warning=50649 -define=xxxx -undefine=xxxx