* fixed test for 32 Bit targets

git-svn-id: trunk@45324 -
This commit is contained in:
florian 2020-05-10 09:04:13 +00:00
parent 7cda3d9e57
commit b48c8d8596

View File

@ -27,7 +27,11 @@ begin
i64 := 0;
i64 := i64 + P * C1 * A1;
writeln(i64);
{$ifdef CPUINT64}
if i64 <> P*T2 then
{$else CPUINT64}
if i64 <> Longint(P*T2) then
{$endif CPUINT64}
Halt(3);
end;