Visible to Intel only — GUID: GUID-245BAA30-5A92-4DAF-AD2F-5DA404545D1F
Visible to Intel only — GUID: GUID-245BAA30-5A92-4DAF-AD2F-5DA404545D1F
inline-forceinline, Qinline-forceinline
Tells the compiler to treat inline routines as forceinline.
Syntax
Linux: |
-inline-forceinline |
Windows: |
/Qinline-forceinline |
Default
OFF |
The compiler uses default heuristics for inline routine expansion. |
Description
This option tells the compiler to treat inline routines as forceinline. It forces inlining of functions suggested for inlining.
When you use this option to change the meaning of inline to be "forceinline", the compiler will aggressively inline these functions, so it may run out of memory and terminate with an "out of memory" message.
IDE Equivalent
Alternate Options
None