mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 12:19:28 +01:00
* fixed compilation on 32 bit hosts
git-svn-id: trunk@2636 -
This commit is contained in:
parent
62f550f2ec
commit
51d98d439e
@ -80,10 +80,18 @@ var
|
||||
if assigned(t^.less) then
|
||||
genitem(list,t^.less);
|
||||
{ fill possible hole }
|
||||
for i:=last+1 to t^._low-1 do
|
||||
list.concat(Tai_const.Create_sym(elselabel));
|
||||
for i:=t^._low to t^._high do
|
||||
list.concat(Tai_const.Create_sym(blocklabel(t^.blockid)));
|
||||
i:=last+1;
|
||||
while i<=t^._low-1 do
|
||||
begin
|
||||
list.concat(Tai_const.Create_sym(elselabel));
|
||||
inc(i);
|
||||
end;
|
||||
i:=t^._low;
|
||||
while i<=t^._high do
|
||||
begin
|
||||
list.concat(Tai_const.Create_sym(blocklabel(t^.blockid)));
|
||||
inc(i);
|
||||
end;
|
||||
last:=t^._high;
|
||||
if assigned(t^.greater) then
|
||||
genitem(list,t^.greater);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user