Browse Source

* use {$maxfpuregisters 0} for i8086 also

git-svn-id: branches/i8086@23826 -
nickysn 12 years ago
parent
commit
897967b8ff
1 changed files with 3 additions and 3 deletions
  1. 3 3
      rtl/inc/systemh.inc

+ 3 - 3
rtl/inc/systemh.inc

@@ -30,10 +30,10 @@
 {$inline on}
 {$define SYSTEMINLINE}
 
-{ don't use FPU registervariables on the i386 }
-{$ifdef CPUI386}
+{ don't use FPU registervariables on the i386 and i8086 }
+{$if defined(CPUI386) or defined(CPUI8086)}
   {$maxfpuregisters 0}
-{$endif CPUI386}
+{$endif CPUI386 or CPUI8086}
 
 { the assembler helpers need this}
 {$ifdef CPUPOWERPC}