Intel® C++ Compiler 16.0 User and Reference Guide

inline-calloc, Qinline-calloc

Tells the compiler to inline calls to calloc() as calls to malloc() and memset().

Architectures

All

Syntax

Linux and OS X:

-inline-calloc

-no-inline-calloc

Windows:

/Qinline-calloc

/Qinline-calloc-

Arguments

None

Default

-no-inline-calloc
or/Qinline-calloc-

The compiler inlines calls to calloc() as calls to calloc().

Description

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.

Note

Many routines in the supplied libraries are more highly optimized for Intel® microprocessors than for non-Intel microprocessors

Optimization Notice

Intel's compilers may or may not optimize to the same degree for non-Intel microprocessors for optimizations that are not unique to Intel microprocessors. These optimizations include SSE2, SSE3, and SSSE3 instruction sets and other optimizations. Intel does not guarantee the availability, functionality, or effectiveness of any optimization on microprocessors not manufactured by Intel. Microprocessor-dependent optimizations in this product are intended for use with Intel microprocessors. Certain optimizations not specific to Intel microarchitecture are reserved for Intel microprocessors. Please refer to the applicable product User and Reference Guides for more information regarding the specific instruction sets covered by this notice.

Notice revision #20110804

IDE Equivalent

None

Alternate Options

None