소스 검색

* 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,