Controls the generation of inline functions.
#pragma dont_inline on | off | reset
If you enable this pragma, the compiler does not inline any function calls, even those declared with the inline keyword or within a class declaration. Also, it does not automatically inline functions, regardless of the setting of the auto_inline pragma, described in "auto_inline" on page 195. If you disable this pragma, the compiler expands all inline function calls, within the limits you set through other inlining-related pragmas.
This pragma corresponds to the Do not Inline setting in the CodeWarrior IDE's C/C++ Language settings panel. By default, this pragma is off .