mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 21:19:31 +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
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user