Intel® Fortran Compiler 17.0 Developer Guide and Reference
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.
Linux and 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