I have an older code which I wish to compile that contains missaligned arrays.
Outside a call to a subroutine: Y(3,6)
In the subroutine call statement: G(3,6,8)
Previous versions of Intel Fortran would permit this to pass, but since I upgraded to VF 2010 and just now converted the project, I receive error messages. What flags can be set to permit this to pass as before? Any suggestions? I do not wish to go through the code and fix these issues.
Current command line options are:
/nologo /debug:full /Od /pad_source /f66 /warn:interfaces /module:"Debug\\" /object:"Debug\\" /Fd"Debug\vc100.pdb" /traceback /check:bounds /libs:static /threads /dbglibs /c
Thank you