* remove ptruint typecast that introduces a int64 calculation

git-svn-id: trunk@6599 -
This commit is contained in:
peter 2007-02-22 07:04:44 +00:00
parent f7a6c1e2ee
commit b1fde7e52e

View File

@ -9,6 +9,6 @@ var
begin
X := 0;
P := nil;
P := Pointer(PtrUInt(P) + X - 12);
P := Pointer(PtrUInt(P) + X + 12);
P := Pointer(P + X - 12);
P := Pointer(P + X + 12);
end.