浏览代码

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

J. Gareth "Curious Kit" Moreton 1 年之前
父节点
当前提交
bb2e626fc3
共有 1 个文件被更改,包括 1 次插入1 次删除
  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,