/check:uninit will correctly detect this use of uninitilized variables when scalars are used:
DOUBLE PRECISION A, B
A = 1D0/B
but it will not detect this case:
DOUBLE PRECISION A, B(1)
A = 1D0/B(1)
Is there any way to check for use of uninitialized array space? I am using IVF version 11.1.3470.2005 within Visual Studio 8.0.50727.762 (SP .050727-7600).



