Explorar o código

* recognise tb(n)z as branch opcode (patch by Edmund Grimley Evans)

git-svn-id: trunk@30846 -
Jonas Maebe %!s(int64=10) %!d(string=hai) anos
pai
achega
7395058cf3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      compiler/aarch64/cpubase.pas

+ 1 - 1
compiler/aarch64/cpubase.pas

@@ -429,7 +429,7 @@ unit cpubase;
 
     function is_calljmp(o:tasmop):boolean;{$ifdef USEINLINE}inline;{$endif USEINLINE}
       begin
-        is_calljmp:=o in [A_B,A_BL,A_BLR,A_RET,A_CBNZ,A_CBZ];
+        is_calljmp:=o in [A_B,A_BL,A_BLR,A_RET,A_CBNZ,A_CBZ,A_TBNZ,A_TBZ];
       end;