mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 16:19:35 +02:00
* the memory model const sets introduced in r24812 moved to i8086/cpuinfo.pas
git-svn-id: trunk@24816 -
This commit is contained in:
parent
381c996e53
commit
a9c949e551
@ -671,11 +671,6 @@ interface
|
||||
|
||||
type
|
||||
tx86memorymodel = (mm_tiny,mm_small,mm_medium,mm_compact,mm_large,mm_huge);
|
||||
const
|
||||
x86_near_code_models = [mm_tiny,mm_small,mm_compact];
|
||||
x86_far_code_models = [mm_medium,mm_large,mm_huge];
|
||||
x86_near_data_models = [mm_tiny,mm_small,mm_medium];
|
||||
x86_far_data_models = [mm_compact,mm_large,mm_huge];
|
||||
|
||||
{ hide Sysutils.ExecuteProcess in units using this one after SysUtils}
|
||||
const
|
||||
|
@ -125,6 +125,11 @@ Const
|
||||
level3optimizerswitches = genericlevel3optimizerswitches + level2optimizerswitches + [{,cs_opt_loopunroll}];
|
||||
level4optimizerswitches = genericlevel4optimizerswitches + level3optimizerswitches + [cs_useebp];
|
||||
|
||||
x86_near_code_models = [mm_tiny,mm_small,mm_compact];
|
||||
x86_far_code_models = [mm_medium,mm_large,mm_huge];
|
||||
x86_near_data_models = [mm_tiny,mm_small,mm_medium];
|
||||
x86_far_data_models = [mm_compact,mm_large,mm_huge];
|
||||
|
||||
Implementation
|
||||
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user