Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-451E01DA-BD5E-49F3-8B04-0C2EA3FA5E56
Visible to Intel only — GUID: GUID-451E01DA-BD5E-49F3-8B04-0C2EA3FA5E56
ATTRIBUTES NOCLONE
The ATTRIBUTES directive option NOCLONE can be used to prevent a procedure from being considered for cloning, which is a mechanism performed by interprocedural constant propagation that produces specialized copies of the procedure.
!DIR$ ATTRIBUTES NOCLONE :: procedure
procedure |
Is a function or subroutine that can be inlined. |
Note that if you specify ATTRIBUTES NOINLINE, it does not prevent this cloning.