ソースを参照

* fixed test for 64 bit platforms

git-svn-id: trunk@15402 -
Jonas Maebe 15 年 前
コミット
af15fa4ec4
1 ファイル変更5 行追加0 行削除
  1. 5 0
      tests/webtbs/tw16668.pp

+ 5 - 0
tests/webtbs/tw16668.pp

@@ -8,8 +8,13 @@ procedure Foo;
 var
   a: TObject;
 begin
+{$ifdef cpu32}
   if ptruint(a)<>$55555555 then
     halt(1);
+{$else}
+  if ptruint(a)<>$5555555555555555 then
+    halt(1);
+{$endif}
 end;
 
 begin