Controls which functions to inline.
#pragma auto_inline on | off | reset
If you enable this pragma, the compiler automatically chooses functions to inline for you, in addition to functions declared with the inline keyword.
Note that if you enable either the Do not Inline setting or the dont_inline pragma, the compiler ignores the setting of the auto_inline pragma and does not inline any functions.
This pragma corresponds to the Auto-Inline setting in the CodeWarrior IDE's Properties > C/C++ Build > Settings > Tool Settings > PowerPC Compiler > C/C++ Language settings panel. By default, this pragma is disabled.