mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 18:29:18 +02:00
* compilation with i386 fixed
This commit is contained in:
parent
ebd7bb7cb9
commit
6147d6d8a0
@ -8285,6 +8285,17 @@ unit aoptx86;
|
|||||||
(taicpu(hp1).oper[0]^.val <> 0) then
|
(taicpu(hp1).oper[0]^.val <> 0) then
|
||||||
begin
|
begin
|
||||||
WorkingValue := taicpu(hp1).oper[0]^.val;
|
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;
|
TestValMin := TestValMin - WorkingValue;
|
||||||
TestValMax := TestValMax - WorkingValue;
|
TestValMax := TestValMax - WorkingValue;
|
||||||
|
Loading…
Reference in New Issue
Block a user