Tells the compiler to inline calls to calloc() as calls to malloc() and memset().
All
Linux and macOS: | -inline-calloc -no-inline-calloc |
Windows: | /Qinline-calloc /Qinline-calloc- |
None
-no-inline-calloc |
The compiler inlines calls to calloc() as calls to calloc(). |
This option tells the compiler to inline calls to calloc() as calls to malloc() and memset(). This enables additional memset() optimizations. For example, it can enable inlining as a sequence of store operations when the size is a compile time constant.
Many routines in the supplied libraries are more highly optimized for Intel® microprocessors than for non-Intel microprocessors
Product and Performance Information |
---|
Performance varies by use, configuration and other factors. Learn more at www.Intel.com/PerformanceIndex. Notice revision #20201201 |
None