[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]


static_inlines

Description:

Controls how many instances of inline functions that the compiler generates.

Compatibility:

This pragma is compatible with the following platform targets:

68K

PowerPC

NEC V800

Intel x86

MIPS

Embedded 68K

Prototype:
  #pragma static_inlines on | off | reset Remarks:

The pragma static_inlines determines what the compiler does if it cannot inline a call to a function declared inline and must create a compiled version of the function. If the pragma is off, the compiler creates one compiled version for the whole project. If the pragma is on, the compiler creates a different compiled version for each file that needs a compiled version.

This pragma is available only so that the compiler can pass certain validation suites. Generally, you'll want to leave this pragma off to make your code smaller without any loss of speed.

This pragma does not correspond to an option in any settings panel. To check whether this option is on, use __option (static_inlines), described in "Checking Options." By default, this pragma is off.


[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]

Visit the Metrowerks website at: http://www.metrowerks.com
For assistance contact Metrowerks Technical Support at: cw_support@metrowerks.com
Copyright © 2000, Metrowerks Corp. All rights reserved.

Last updated: August 17, 2000