Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-82F6130F-7366-479A-B2C9-D921A7713169
Visible to Intel only — GUID: GUID-82F6130F-7366-479A-B2C9-D921A7713169
DECLARE and NODECLARE
General Compiler Directives: DECLARE generates warnings for variables that have been used but have not been declared (like the IMPLICIT NONE statement). NODECLARE (the default) disables these warnings.
!DIR$ DECLARE
!DIR$ NODECLARE
The DECLARE directive is primarily a debugging tool that locates variables that have not been properly initialized, or that have been defined but never used.