Intel® Fortran Compiler XE 13.1 User and Reference Guides
Tells static analysis to treat enumeration variables as known values equal to any one of the associated enumeration literals.
All
Linux: | -diag-enable sc-enums |
OS X: | None |
Windows: | /Qdiag-enable:sc-enums |
None
OFF |
If static analysis is enabled, it treats unknown enumeration variables as unknown integer values. |
This option tells static analysis to treat enumeration variables as known values equal to any one of the associated enumeration literals. By default, static analysis treats unknown enumeration variables as unknown integer values. Setting this option may find additional errors but tends to create more false positives.
This option is ignored unless static analysis diagnostics are enabled by providing one or more of the following options:
-diag-enable sc[n] or -diag-enable sc-mode (Linux* OS)
/Qdiag-enable:sc[n] or /Qdiag-enable:sc-mode (Windows* OS)
None