mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-13 13:49:17 +02:00
* remove ptruint typecast that introduces a int64 calculation
git-svn-id: trunk@6599 -
This commit is contained in:
parent
f7a6c1e2ee
commit
b1fde7e52e
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user