Intel® Fortran Compiler 17.0 Developer Guide and Reference
Specifies whether or not a procedure call may have hidden aliases of local variables not supplied as actual arguments.
Linux and macOS: | -falias -fno-alias |
Windows: | /Oa /Oa- |
None
-fno-alias |
Procedure calls do not alias local variables. |
This option specifies whether or not the compiler can assume that during a procedure call, local variables in the caller that are not present in the actual argument list and not visible by host association, are not referenced or redefined due to hidden aliasing. The Fortran standard generally prohibits such aliasing.
If you specify -falias (Linux* and OS X*) or /Oa- (Windows*), aliasing during a procedure call is assumed; this can possibly affect performance.
If you specify -fno-alias or /Oa (the default), aliasing during a procedure call is not assumed.
None