This option suppresses outputting warning messages of the specified number.
[Specification format]
-Xno_warning=num[,num]...
-Xno_warning=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. |
- | 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. |
[Example of use]
- | To suppress outputting warning message "W0520111" describe as: |
>ccrh -Xno_warning=20111 -Xcommon=rh850 main.c
|