* compilation with i386 fixed

This commit is contained in:
florian 2021-12-21 22:45:32 +01:00
parent ebd7bb7cb9
commit 6147d6d8a0

View File

@ -8285,6 +8285,17 @@ unit aoptx86;
(taicpu(hp1).oper[0]^.val <> 0) then
begin
WorkingValue := taicpu(hp1).oper[0]^.val;
case MinSize of
S_B:
if (WorkingValue and $ff)<>WorkingValue then
break;
S_W:
if (WorkingValue and $ffff)<>WorkingValue then
break;
else
;
end;
TestValMin := TestValMin - WorkingValue;
TestValMax := TestValMax - WorkingValue;