Source:

Jacob Sorber

Make existing code run faster, with compiler optimizations.

Compiler Optimization

Examples of Compiler Optimizations

Example.

gcc -O2 test.c
clang -O1 test.c

# -O is the optimization option and the trailing number 
# is the optimization level

There are usually ranging of optimization level from O0 to O3. O0 will produce expected result and is the default for -O option

GCC optimization options:

Optimize Options (Using the GNU Compiler Collection (GCC))

Recommendation #1