* fixed i8086 compilation

git-svn-id: trunk@29807 -
This commit is contained in:
Jonas Maebe 2015-02-23 08:51:59 +00:00
parent d85b49755c
commit 1a949eae1f

View File

@ -672,6 +672,7 @@ implementation
localsize:=fillsize; localsize:=fillsize;
while (localsize>0) do while (localsize>0) do
begin begin
{$ifndef i8086}
if CPUX86_HAS_CMOV in cpu_capabilities[current_settings.cputype] then if CPUX86_HAS_CMOV in cpu_capabilities[current_settings.cputype] then
begin begin
for j:=low(alignarray_cmovcpus) to high(alignarray_cmovcpus) do for j:=low(alignarray_cmovcpus) to high(alignarray_cmovcpus) do
@ -682,6 +683,7 @@ implementation
dec(localsize,length(alignarray_cmovcpus[j])); dec(localsize,length(alignarray_cmovcpus[j]));
end end
else else
{$endif not i8086}
begin begin
for j:=low(alignarray) to high(alignarray) do for j:=low(alignarray) to high(alignarray) do
if (localsize>=length(alignarray[j])) then if (localsize>=length(alignarray[j])) then