File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ three different optimization levels:
25
25
26
26
- ``-Onone ``: This is meant for normal development. It performs minimal
27
27
optimizations and preserves all debug info.
28
- - ``-O ``: This is meant for most production code. The compiler performs
28
+ - ``-Osize ``: This is meant for most production code. The compiler performs
29
29
aggressive optimizations that can drastically change the type and amount of
30
30
emitted code. Debug information will be emitted but will be lossy.
31
- - ``-Osize ``: This is a special optimization mode where the compiler prioritizes
32
- code size over performance .
31
+ - ``-O ``: This is a special optimization mode where the compiler prioritizes
32
+ performance over code size .
33
33
34
34
In the Xcode UI, one can modify the current optimization level as follows:
35
35
You can’t perform that action at this time.
0 commit comments