Browse Source

* a64: Fixed bug where BIC instructions were treated as having 2 operands rather than 3

J. Gareth "Curious Kit" Moreton 1 year ago
parent
commit
bb2e626fc3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/aarch64/aasmcpu.pas

+ 1 - 1
compiler/aarch64/aasmcpu.pas

@@ -940,13 +940,13 @@ implementation
         case opc of
           A_ADD,
           A_AND,
+          A_BIC,
           A_EON,
           A_EOR,
           A_ORN,
           A_ORR,
           A_SUB:
             result:=opnr=3;
-          A_BIC,
           A_CMN,
           A_CMP,
           A_MOVK,