mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-08 12:21:35 +01:00
Fixed Unreachable code warning when building on a 32-bit platform with DEBUG_NODE_XML
This commit is contained in:
parent
0508f643c0
commit
0f1c4b4db8
@ -1058,8 +1058,10 @@ implementation
|
||||
$10000..$FFFFFFFF:
|
||||
WritePointer := '$' + hexstr(PtrUInt(P), 8);
|
||||
{$ifend sizeof(Pointer) >= 4}
|
||||
{$if sizeof(Pointer) > 4}
|
||||
else
|
||||
WritePointer := '$' + hexstr(PtrUInt(P), 2*sizeof(Pointer));
|
||||
{$ifend sizeof(Pointer) > 4}
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user