mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 06:49:13 +02:00
* CompareWord and CompareDWord fixed for building with <2.3.1
git-svn-id: trunk@9087 -
This commit is contained in:
parent
9ff58eb46f
commit
b59fdbeb93
@ -446,7 +446,7 @@ begin
|
|||||||
inc(pptruint(psrc));
|
inc(pptruint(psrc));
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
if (len <= high(ptruint) div 2) and
|
if (len <= high(ptrint)) and
|
||||||
(psrc+len >= psrc) then
|
(psrc+len >= psrc) then
|
||||||
pend:=psrc+len
|
pend:=psrc+len
|
||||||
else
|
else
|
||||||
@ -528,7 +528,7 @@ begin
|
|||||||
inc(pptruint(psrc));
|
inc(pptruint(psrc));
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
if (len <= high(ptruint) div 4) and
|
if (len <= high(ptrint) div 2) and
|
||||||
(psrc+len >= psrc) then
|
(psrc+len >= psrc) then
|
||||||
pend:=psrc+len
|
pend:=psrc+len
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user