mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 23:19:24 +02:00
New GasCpuTypeStr array: GAS uses different names for cpu variants
git-svn-id: trunk@23176 -
This commit is contained in:
parent
548a687a17
commit
0af0da69b1
@ -63,6 +63,12 @@ Const
|
||||
'COLDFIRE'
|
||||
);
|
||||
|
||||
gascputypestr : array[tcputype] of string[8] = ('',
|
||||
'68000',
|
||||
'68020',
|
||||
'cfv4e'
|
||||
);
|
||||
|
||||
fputypestr : array[tfputype] of string[6] = ('',
|
||||
'SOFT',
|
||||
'LIBGCC',
|
||||
@ -79,7 +85,7 @@ Const
|
||||
cs_opt_reorder_fields,cs_opt_fastmath];
|
||||
|
||||
level1optimizerswitches = genericlevel1optimizerswitches;
|
||||
level2optimizerswitches = genericlevel2optimizerswitches + level1optimizerswitches +
|
||||
level2optimizerswitches = genericlevel2optimizerswitches + level1optimizerswitches +
|
||||
[cs_opt_regvar,cs_opt_stackframe,cs_opt_nodecse];
|
||||
level3optimizerswitches = genericlevel3optimizerswitches + level2optimizerswitches + [{,cs_opt_loopunroll}];
|
||||
level4optimizerswitches = genericlevel4optimizerswitches + level3optimizerswitches + [];
|
||||
|
Loading…
Reference in New Issue
Block a user