Enables function inlining for single file compilation.
Linux: | -finline-functions -fno-inline-functions |
Windows: | None |
None
-finline-functions |
Interprocedural optimizations occur. However, if you specify -O0, the default is OFF. |
This option enables function inlining for single file compilation.
It enables the compiler to perform inline function expansion for calls to functions defined within the current source file.
The compiler applies a heuristic to perform the function expansion.
None