Disables the EXIT code generation.
#pragma NO_EXIT
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.