Function
#pragma NO_INLINE
None
None
None
This pragma prevents the Compiler from inlining the next function in the source. The pragma is used to avoid inlining a function which would be inlined because of the -Oi compiler option.
// (With the -Oi option) int i; #pragma NO_INLINE static void foo(void) { i = 12; } void main(void) { foo(); // call is not inlined }