Visible to Intel only — GUID: GUID-E494B8C5-F9FA-41D8-A55A-DDC94F4DECCA
Visible to Intel only — GUID: GUID-E494B8C5-F9FA-41D8-A55A-DDC94F4DECCA
mstringop-inline-threshold, Qstringop-inline-threshold
Tells the compiler to not inline calls to buffer manipulation functions such as memcpy and memset when the number of bytes the functions handle are known at compile time and greater than the specified value. This feature is only available for ifort.
Linux: |
-mstringop-inline-threshold=val |
macOS: |
-mstringop-inline-threshold=val |
Windows: |
/Qstringop-inline-threshold:val |
val |
Is a positive 32-bit integer. If the size is greater than val, the compiler will never inline it. |
OFF |
The compiler uses its own heuristics to determine the default. |
This option tells the compiler to not inline calls to buffer manipulation functions such as memcpy and memset when the number of bytes the functions handle are known at compile time and greater than the specified val.
None