mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 07:09:29 +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 := 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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user