Forráskód Böngészése

* also return true in is_calljmp() for the A_JCXZ instruction on the i8086

git-svn-id: trunk@24886 -
nickysn 12 éve
szülő
commit
4840a33b80
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      compiler/x86/cpubase.pas

+ 2 - 2
compiler/x86/cpubase.pas

@@ -440,9 +440,9 @@ implementation
       begin
       begin
         case o of
         case o of
           A_CALL,
           A_CALL,
-{$ifdef i386}
+{$if defined(i386) or defined(i8086)}
           A_JCXZ,
           A_JCXZ,
-{$endif i386}
+{$endif defined(i386) or defined(i8086)}
           A_JECXZ,
           A_JECXZ,
 {$ifdef x86_64}
 {$ifdef x86_64}
           A_JRCXZ,
           A_JRCXZ,