소스 검색

* fix taicpu.is_same_reg_move

git-svn-id: trunk@44647 -
florian 5 년 전
부모
커밋
b7374401fd
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      compiler/xtensa/aasmcpu.pas

+ 1 - 2
compiler/xtensa/aasmcpu.pas

@@ -416,8 +416,7 @@ uses cutils, cclasses;
           R_FPUREGISTER:
             result:=
                (opcode=A_MOV_S) and
-               (oper[0]^.reg=oper[1]^.reg) and
-               (oper[0]^.reg=oper[2]^.reg);
+               (oper[0]^.reg=oper[1]^.reg);
          else
            result:=false;
         end;