Controls the selection of which functions to inline.
Compatibility:This pragma is compatible with the following platform targets:
#pragma auto_inline on | off | reset
Remarks:If this pragma is on, the compiler, automatically picks functions to inline for you
Note that if either the Don't Inline option ("Inlining") or the dont_inline pragma ("dont_inline") is on, the compiler ignores the setting of the auto_inline pragma and doesn't inline any functions.
This pragma corresponds to the Auto-Inline option of the Inlining menu the C/C++ Language Panel. To check whether this option is on, use __option (auto_inline), described in "Checking Options."