Visible to Intel only — GUID: GUID-5E9F4382-2DFE-4BDE-8AC7-103D97C03C35
Visible to Intel only — GUID: GUID-5E9F4382-2DFE-4BDE-8AC7-103D97C03C35
falias, Oa
Specifies whether or not a procedure call may have hidden aliases of local variables not supplied as actual arguments.
Linux: |
-falias -fno-alias |
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 macOS) 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