mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-10-01 15:50:05 +02:00
MG: fixed typo
git-svn-id: trunk@1439 -
This commit is contained in:
parent
9a34e4df29
commit
e095b4c22e
@ -19,7 +19,7 @@
|
||||
* *
|
||||
***************************************************************************/
|
||||
}
|
||||
unit compileroptions;
|
||||
unit CompilerOptions;
|
||||
|
||||
{$mode objfpc}
|
||||
{$H+}
|
||||
@ -883,10 +883,10 @@ begin
|
||||
switches := switches + ' -O';
|
||||
|
||||
{ Generate }
|
||||
{ Generate g = smaller G = faster }
|
||||
{ Generate G = faster g = smaller }
|
||||
case (Generate) of
|
||||
1: switches := switches + 'g';
|
||||
2: switches := switches + 'G';
|
||||
1: switches := switches + 'G';
|
||||
2: switches := switches + 'g';
|
||||
end;
|
||||
|
||||
{ Optimizations }
|
||||
|
Loading…
Reference in New Issue
Block a user