mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-07 09:39:33 +01: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'
|
'COLDFIRE'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
gascputypestr : array[tcputype] of string[8] = ('',
|
||||||
|
'68000',
|
||||||
|
'68020',
|
||||||
|
'cfv4e'
|
||||||
|
);
|
||||||
|
|
||||||
fputypestr : array[tfputype] of string[6] = ('',
|
fputypestr : array[tfputype] of string[6] = ('',
|
||||||
'SOFT',
|
'SOFT',
|
||||||
'LIBGCC',
|
'LIBGCC',
|
||||||
@ -79,7 +85,7 @@ Const
|
|||||||
cs_opt_reorder_fields,cs_opt_fastmath];
|
cs_opt_reorder_fields,cs_opt_fastmath];
|
||||||
|
|
||||||
level1optimizerswitches = genericlevel1optimizerswitches;
|
level1optimizerswitches = genericlevel1optimizerswitches;
|
||||||
level2optimizerswitches = genericlevel2optimizerswitches + level1optimizerswitches +
|
level2optimizerswitches = genericlevel2optimizerswitches + level1optimizerswitches +
|
||||||
[cs_opt_regvar,cs_opt_stackframe,cs_opt_nodecse];
|
[cs_opt_regvar,cs_opt_stackframe,cs_opt_nodecse];
|
||||||
level3optimizerswitches = genericlevel3optimizerswitches + level2optimizerswitches + [{,cs_opt_loopunroll}];
|
level3optimizerswitches = genericlevel3optimizerswitches + level2optimizerswitches + [{,cs_opt_loopunroll}];
|
||||||
level4optimizerswitches = genericlevel4optimizerswitches + level3optimizerswitches + [];
|
level4optimizerswitches = genericlevel4optimizerswitches + level3optimizerswitches + [];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user