mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 13:11:06 +02:00
* fixed test for 32 Bit targets
git-svn-id: trunk@45324 -
This commit is contained in:
parent
7cda3d9e57
commit
b48c8d8596
@ -27,7 +27,11 @@ begin
|
|||||||
i64 := 0;
|
i64 := 0;
|
||||||
i64 := i64 + P * C1 * A1;
|
i64 := i64 + P * C1 * A1;
|
||||||
writeln(i64);
|
writeln(i64);
|
||||||
|
{$ifdef CPUINT64}
|
||||||
if i64 <> P*T2 then
|
if i64 <> P*T2 then
|
||||||
|
{$else CPUINT64}
|
||||||
|
if i64 <> Longint(P*T2) then
|
||||||
|
{$endif CPUINT64}
|
||||||
Halt(3);
|
Halt(3);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user