Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Uninitialized variables

Benjamin_K_1
Principiante
616 Visualizações

Is there a way to have ifort look for uninitialized variables (maybe a debugging flag)?

Thanks - Ben

0 Kudos
4 Respostas
jimdempseyatthecove
Colaborador honorário III
616 Visualizações

In Debug build there is a runtime option to check for use of un-initialized variables.

-QTrapuv and/or -RTCu

Jim Dempsey

Steven_L_Intel1
Funcionário
616 Visualizações

No, not -Qtrapuv - pretend that doesn't exist. -check uninit will do some checking. The Static Analysis feature of Fortran Studio XE can do a good job of this.

Casey
Principiante
616 Visualizações

jimdempseyatthecove wrote:

-QTrapuv

This won't tell you that you have uninitialized variables but will likely cause runtime errors or garbage program output if you do have them. This flag causes your variables to start out with garbage values that will propagate through your code if you are not initializing them before use. 

Steven_L_Intel1
Funcionário
616 Visualizações

-Qtrapuv isn't useful. What it does is cause floating point variables to be initialized to an "unusual value". It is not a NaN or anything else that would trigger an exception. I think using this reduces the chance of your finding errors and recommend against using it.

Responder