NO_EXIT

Disables the EXIT code generation.

Syntax
  #pragma NO_EXIT  
Remarks

This pragma disables the EXIT code generation (the EXIT code is responsible with managing the stack space deallocating for the current function).

The EXIT code generation can be disabled if the return value and stack space are handled explicitly from inline-assembly code or if they are not required at all in the function.

Note: This pragma should be used in pair with the NO_ENTRY pragma since the stack frame can get corrupted otherwise.