This notifies the compiler of an inline function.
If both #pragma noinline and __inline are specified for the same function within a single translation unit, an error will occur. |
The conditions for the functions to be expanded inline depend on the -Oinline_level option setting. |
The function declared with __inline is expanded inline at the location from which the function is called. |
If the call and definition of the specified function differ in either of the following ways, a warning message will be output and inline specification will be ignored. |
The types of the return values or parameters do not match and type conversion is not possible. |
If the specified function satisfies any of the following conditions, inline specification will be ignored; no message will be output in this case. |
The function call and the code for returning to the caller are not output and execution is accelerated. |
As the inline-expanded code is optimized as well as the code before and after the function call, the effect of optimization may be improved. |
Use of __inline does not guarantee inline expansion. The compiler may stop inline expansion depending on a limitation due to increased compilation time or memory usage |