Browse Source

* cast only the longint

git-svn-id: trunk@45325 -
florian 5 years ago
parent
commit
7a6bd84bc0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/webtbs/tw36587.pp

+ 1 - 1
tests/webtbs/tw36587.pp

@@ -30,7 +30,7 @@ begin
 {$ifdef CPUINT64}
 {$ifdef CPUINT64}
   if i64 <> P*T2 then
   if i64 <> P*T2 then
 {$else CPUINT64}
 {$else CPUINT64}
-  if i64 <> Longint(P*T2) then
+  if i64 <> P*Longint(T2) then
 {$endif CPUINT64}
 {$endif CPUINT64}
     Halt(3);
     Halt(3);
 end;
 end;