mywiki:linux:optimize_options
Table of Contents
GCC Optimize Options
| Reference | Optimize-Options |
inline-functions
-finline-functions
Integrate all simple functions into their callers. The compiler heuristically decides which functions are simple enough to be worth integrating in this way.
If all calls to a given function are integrated, and the function is declared static, then the function is normally not output as assembler code in its own right.
Enabled at level -O3.
mywiki/linux/optimize_options.txt · Last modified: by 127.0.0.1
