Intel® C++ Compiler Classic Developer Guide and Reference

ID 767249
Date 12/16/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

inline-calloc, Qinline-calloc

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

Architectures

All

Syntax

Linux and macOS:

-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

Product and Performance Information

Performance varies by use, configuration and other factors. Learn more at www.Intel.com/PerformanceIndex.

Notice revision #20201201

IDE Equivalent
None
Alternate Options

None