This option suppresses outputting warning messages of the specified number.
[Specification format]
-Xno_warning={num|num1-num2}[, ...]
|
- | Interpretation when omitted |
All warning messages are output.
[Detailed description]
- | This option suppresses outputting warning messages of the specified number. |
- | Specify the error numbers as num, num1, and num2.
If the error number that does not exist, it will be ignored. |
- | An error will occur if num, num1, or num2 is omitted. |
- | If num1-num2 is specified, it is assumed that error numbers within the range have been specified. |
- | When this option is specified more than once, all specifications will be valid. |
- | The error number specified by this option is the rightmost 5 digits of the 7-digit number following the "W".
See "10. MESSAGE" for error numbers. |
- | A message whose type was changed to error level by the -change_message option cannot be controlled by this option. |
- | The message numbers that can be controlled by this option are as follows: |
- | W0520000 to W0529999 and W0550000 to W0559999 [V1.06.00 or earlier] |
- | W0510000 to W0559999 [V1.07.00 or later] |
[Example of use]
- | To suppress outputting warning message "W0520111" describe as: |
>ccrh -Xno_warning=20111 -Xcommon=rh850 main.c
|