* fix compilation of arm compiler on 32 bit hosts

git-svn-id: trunk@49281 -
This commit is contained in:
florian 2021-04-27 16:36:40 +00:00
parent 77e3a402da
commit 0ffd4f8780

View File

@ -196,10 +196,18 @@ implementation
if assigned(t^.less) then if assigned(t^.less) then
genitem_thumb2(list,t^.less); genitem_thumb2(list,t^.less);
{ fill possible hole } { fill possible hole }
for i:=last.svalue+1 to t^._low.svalue-1 do i:=last.svalue+1;
list.concat(Tai_const.Create_rel_sym(aitconst_half16bit,tablelabel,elselabel)); while i<=t^._low.svalue-1 do
for i:=t^._low.svalue to t^._high.svalue do begin
list.concat(Tai_const.Create_rel_sym(aitconst_half16bit,tablelabel,blocklabel(t^.blockid))); list.concat(Tai_const.Create_rel_sym(aitconst_half16bit,tablelabel,elselabel));
i:=i+1;
end;
i:=t^._low.svalue;
while i<=t^._high.svalue do
begin
list.concat(Tai_const.Create_rel_sym(aitconst_half16bit,tablelabel,blocklabel(t^.blockid)));
i:=i+1;
end;
last:=t^._high.svalue; last:=t^._high.svalue;
if assigned(t^.greater) then if assigned(t^.greater) then
genitem_thumb2(list,t^.greater); genitem_thumb2(list,t^.greater);