From 1a949eae1f12e4e5be849370f0295d6e01dd95de Mon Sep 17 00:00:00 2001
From: Jonas Maebe <jonas@freepascal.org>
Date: Mon, 23 Feb 2015 08:51:59 +0000
Subject: [PATCH]   * fixed i8086 compilation

git-svn-id: trunk@29807 -
---
 compiler/x86/aasmcpu.pas | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/compiler/x86/aasmcpu.pas b/compiler/x86/aasmcpu.pas
index 62dfe2616a..b66613a3d8 100644
--- a/compiler/x86/aasmcpu.pas
+++ b/compiler/x86/aasmcpu.pas
@@ -672,6 +672,7 @@ implementation
            localsize:=fillsize;
            while (localsize>0) do
             begin
+{$ifndef i8086}
               if CPUX86_HAS_CMOV in cpu_capabilities[current_settings.cputype] then
                 begin
                   for j:=low(alignarray_cmovcpus) to high(alignarray_cmovcpus) do
@@ -682,6 +683,7 @@ implementation
                   dec(localsize,length(alignarray_cmovcpus[j]));
                 end
               else
+{$endif not i8086}
                 begin
                   for j:=low(alignarray) to high(alignarray) do
                    if (localsize>=length(alignarray[j])) then