pgfortran uninitialized local variable

I’m evaluating PGI compiler. But a legacy code can not run because some of its local variables was not initialized. Intel compiler can force them to zero as expected. Does anyone knows how to let pgfortran initialize local variables? Thanks.

Compile everything -Msave

and local variables will be statically assigned.

dave