* Added the $F+ switch (forced far calls) for some TP mode tests.

git-svn-id: trunk@46456 -
This commit is contained in:
yury 2020-08-16 10:48:10 +00:00
parent 721e89fafd
commit 2ab7cceeaa
8 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,7 @@
{ in tp mode can't use the procvar in writeln OK 0.99.11 (PFV) }
{$ifdef fpc}{$mode tp}{$endif}
{$F+}
type tmpproc=function:longint;

View File

@ -2,6 +2,7 @@
{ problem with procvars in tp mode OK 0.99.11 (PM) }
{$mode tp}
{$F+}
type proc = procedure(a : longint);
procedure test(b : longint);

View File

@ -2,6 +2,7 @@
{ @procvar in tp mode bugss OK 0.99.13 (PFV) }
{$ifdef fpc}{$mode tp}{$endif}
{$F+}
function ReturnString: string;
begin

View File

@ -4,6 +4,7 @@
type
codepointer = pointer;
{$endif fpc}
{$F+}
function times2(x : longint) : longint;

View File

@ -16,6 +16,7 @@ program taddr;
{$ifdef fpc}
{$mode tp}
{$endif}
{$F+}
procedure testprocvar;
begin

View File

@ -1,7 +1,7 @@
{$F+}
{$ifdef fpc}
{$mode tp}
{$endif fpc}
{$F+}
type
tproc = procedure;

View File

@ -1,4 +1,5 @@
{$mode tp}
{$F+}
type ProcType = procedure(s:string);
GetProcType = function(s:string;var Proc:ProcType):boolean;

View File

@ -2,6 +2,7 @@
{ Submitted by "marco" on 2002-12-19 }
{ e-mail: marco@freepascal.org }
{$ifdef fpc}{$mode TP}{$endif}
{$F+}
function P1:longint; begin end;
function P2:longint; begin end;