mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:47:52 +02:00
* 8086: Do not force far calls in the TP mode by default. This is TP compatible. Other modes need forced far calls by default in order to compile non-TP code.
git-svn-id: trunk@46433 -
This commit is contained in:
parent
9d3b105fab
commit
f7d14128b5
@ -604,6 +604,16 @@ implementation
|
||||
include(init_settings.localswitches,cs_strict_var_strings);
|
||||
end;
|
||||
|
||||
{$ifdef i8086}
|
||||
{ Do not force far calls in the TP mode by default }
|
||||
if (m_tp7 in current_settings.modeswitches) then
|
||||
begin
|
||||
exclude(current_settings.localswitches,cs_force_far_calls);
|
||||
if changeinit then
|
||||
exclude(init_settings.localswitches,cs_force_far_calls);
|
||||
end;
|
||||
{$endif i8086}
|
||||
|
||||
{ Undefine old symbol }
|
||||
if (m_delphi in oldmodeswitches) then
|
||||
undef_system_macro('FPC_DELPHI')
|
||||
|
Loading…
Reference in New Issue
Block a user