Function
#pragma NO_INLINE
None
None
None
This pragma prevents the Compiler from inlining the next function in the source. Use this pragma to avoid inlining a function normally inlined by the -Oi option.
// (With option -Oi) int i; #pragma NO_INLINE static void myfun(void) { i = 12; } void main(void) { myfun(); // call is not inlined }
#pragma INLINE: Inline Next Function Definition
-Oi: Inlining compiler option