mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 20:29:18 +02:00
* fixed test for 64 bit platforms
git-svn-id: trunk@11591 -
This commit is contained in:
parent
e295053448
commit
6d9bf8081a
@ -6,7 +6,11 @@ var
|
|||||||
p:^Byte;
|
p:^Byte;
|
||||||
c:Byte;
|
c:Byte;
|
||||||
d:Integer;
|
d:Integer;
|
||||||
|
{$ifdef cpu64}
|
||||||
|
v : qword;
|
||||||
|
{$else}
|
||||||
v : cardinal;
|
v : cardinal;
|
||||||
|
{$endif}
|
||||||
begin
|
begin
|
||||||
v:=100;
|
v:=100;
|
||||||
inc(v,-1);
|
inc(v,-1);
|
||||||
|
Loading…
Reference in New Issue
Block a user